Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/functions_client/lib/src/functions_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
Expand All @@ -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<String, String>`.
/// [MultipartRequest] and must be of type `Map<String, String>`.
///
/// [files] to send in a `MultipartRequest`. [body] is used for the fields.
///
Expand Down
2 changes: 1 addition & 1 deletion packages/storage_client/lib/src/storage_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase/lib/src/realtime_client_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase_flutter/lib/src/supabase.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading