diff --git a/packages/functions_client/lib/src/functions_client.dart b/packages/functions_client/lib/src/functions_client.dart index c83cc3686..7506e2237 100644 --- a/packages/functions_client/lib/src/functions_client.dart +++ b/packages/functions_client/lib/src/functions_client.dart @@ -39,7 +39,7 @@ class FunctionsClient { /// Updates the authorization header /// - /// [token] - the new jwt token sent in the authorisation header + /// [token] - the new jwt token sent in the authorization header void setAuth(String token) { _headers['Authorization'] = 'Bearer $token'; } @@ -53,7 +53,7 @@ class FunctionsClient { /// [body] of the request when [files] is null and can be of type String /// or an Object that is encodable to JSON with `jsonEncode`. /// If [files] is not null, [body] represents the fields of the - /// [MultipartRequest] and must be be of type `Map`. + /// [MultipartRequest] and must be of type `Map`. /// /// [files] to send in a `MultipartRequest`. [body] is used for the fields. /// diff --git a/packages/storage_client/lib/src/storage_client.dart b/packages/storage_client/lib/src/storage_client.dart index b51af7e46..89b7db955 100644 --- a/packages/storage_client/lib/src/storage_client.dart +++ b/packages/storage_client/lib/src/storage_client.dart @@ -38,7 +38,7 @@ class SupabaseStorageClient extends StorageBucketApi { int retryAttempts = 0, }) : assert( retryAttempts >= 0, - 'retryAttempts has to be great than or equal to 0', + 'retryAttempts has to be greater than or equal to 0', ), _defaultRetryAttempts = retryAttempts, super( diff --git a/packages/supabase/lib/src/realtime_client_options.dart b/packages/supabase/lib/src/realtime_client_options.dart index 7b4e593b1..2c1ffb39b 100644 --- a/packages/supabase/lib/src/realtime_client_options.dart +++ b/packages/supabase/lib/src/realtime_client_options.dart @@ -11,7 +11,7 @@ class RealtimeClientOptions { 'Client side rate limit has been removed. This option will be ignored.') final int? eventsPerSecond; - /// Level of realtime server logs to to be logged + /// Level of realtime server logs to be logged final RealtimeLogLevel? logLevel; /// the timeout to trigger push timeouts diff --git a/packages/supabase_flutter/lib/src/supabase.dart b/packages/supabase_flutter/lib/src/supabase.dart index 952460b0c..a759d0934 100644 --- a/packages/supabase_flutter/lib/src/supabase.dart +++ b/packages/supabase_flutter/lib/src/supabase.dart @@ -257,7 +257,7 @@ class Supabase with WidgetsBindingObserver { // Reconnect if the socket is currently not connected. // When coming from [AppLifecycleState.paused] this should be the case, // but when coming from [AppLifecycleState.inactive] no disconnect - // happened and therefore connection should still be intanct and we + // happened and therefore connection should still be intact and we // should not reconnect. // ignore: invalid_use_of_internal_member