File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class FunctionsClient {
39
39
40
40
/// Updates the authorization header
41
41
///
42
- /// [token] - the new jwt token sent in the authorisation header
42
+ /// [token] - the new jwt token sent in the authorization header
43
43
void setAuth (String token) {
44
44
_headers['Authorization' ] = 'Bearer $token ' ;
45
45
}
@@ -53,7 +53,7 @@ class FunctionsClient {
53
53
/// [body] of the request when [files] is null and can be of type String
54
54
/// or an Object that is encodable to JSON with `jsonEncode` .
55
55
/// If [files] is not null, [body] represents the fields of the
56
- /// [MultipartRequest] and must be be of type `Map<String, String>` .
56
+ /// [MultipartRequest] and must be of type `Map<String, String>` .
57
57
///
58
58
/// [files] to send in a `MultipartRequest` . [body] is used for the fields.
59
59
///
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class SupabaseStorageClient extends StorageBucketApi {
38
38
int retryAttempts = 0 ,
39
39
}) : assert (
40
40
retryAttempts >= 0 ,
41
- 'retryAttempts has to be great than or equal to 0' ,
41
+ 'retryAttempts has to be greater than or equal to 0' ,
42
42
),
43
43
_defaultRetryAttempts = retryAttempts,
44
44
super (
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class RealtimeClientOptions {
11
11
'Client side rate limit has been removed. This option will be ignored.' )
12
12
final int ? eventsPerSecond;
13
13
14
- /// Level of realtime server logs to to be logged
14
+ /// Level of realtime server logs to be logged
15
15
final RealtimeLogLevel ? logLevel;
16
16
17
17
/// the timeout to trigger push timeouts
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ class Supabase with WidgetsBindingObserver {
257
257
// Reconnect if the socket is currently not connected.
258
258
// When coming from [AppLifecycleState.paused] this should be the case,
259
259
// but when coming from [AppLifecycleState.inactive] no disconnect
260
- // happened and therefore connection should still be intanct and we
260
+ // happened and therefore connection should still be intact and we
261
261
// should not reconnect.
262
262
263
263
// ignore: invalid_use_of_internal_member
You can’t perform that action at this time.
0 commit comments