Skip to content

Commit 52768ad

Browse files
committed
Add 1.8.x support
1 parent 39dc7fc commit 52768ad

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/examples/databases/decrement-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8-
.set_key('<YOUR_API_KEY>') # Your secret API key
8+
.set_session('') # The user session to authenticate with
99

1010
databases = Databases.new(client)
1111

docs/examples/databases/increment-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8-
.set_key('<YOUR_API_KEY>') # Your secret API key
8+
.set_session('') # The user session to authenticate with
99

1010
databases = Databases.new(client)
1111

docs/examples/tablesdb/decrement-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8-
.set_key('<YOUR_API_KEY>') # Your secret API key
8+
.set_session('') # The user session to authenticate with
99

1010
tables_db = TablesDb.new(client)
1111

docs/examples/tablesdb/increment-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8-
.set_key('<YOUR_API_KEY>') # Your secret API key
8+
.set_session('') # The user session to authenticate with
99

1010
tables_db = TablesDb.new(client)
1111

0 commit comments

Comments
 (0)