From d2268d9036ff80808a6eb2391357fb45fd607a09 Mon Sep 17 00:00:00 2001 From: Guilherme Souza Date: Wed, 15 Oct 2025 13:02:22 -0300 Subject: [PATCH] docs: improve formatting of SupabaseClient example Reformat SupabaseClient initialization for better readability. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a8ed898..f1031552 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,10 @@ Then you're able to import the package and establish the connection with the dat ```swift /// Create a single supabase client for interacting with your database -let client = SupabaseClient(supabaseURL: URL(string: "https://xyzcompany.supabase.co")!, supabaseKey: "public-anon-key") +let client = SupabaseClient( + supabaseURL: URL(string: "https://xyzcompany.supabase.co")!, + supabaseKey: "public-anon-key" +) ``` ### Initialize with custom options