Skip to content

Commit d33ee24

Browse files
committed
Add 1.8.x support
1 parent 28cfbdd commit d33ee24

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
@@ -3,7 +3,7 @@ import Appwrite
33
let client = Client()
44
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
55
.setProject("<YOUR_PROJECT_ID>") // Your project ID
6-
.setKey("<YOUR_API_KEY>") // Your secret API key
6+
.setSession("") // The user session to authenticate with
77

88
let databases = Databases(client)
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Appwrite
33
let client = Client()
44
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
55
.setProject("<YOUR_PROJECT_ID>") // Your project ID
6-
.setKey("<YOUR_API_KEY>") // Your secret API key
6+
.setSession("") // The user session to authenticate with
77

88
let databases = Databases(client)
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Appwrite
33
let client = Client()
44
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
55
.setProject("<YOUR_PROJECT_ID>") // Your project ID
6-
.setKey("<YOUR_API_KEY>") // Your secret API key
6+
.setSession("") // The user session to authenticate with
77

88
let tablesDb = TablesDb(client)
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Appwrite
33
let client = Client()
44
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
55
.setProject("<YOUR_PROJECT_ID>") // Your project ID
6-
.setKey("<YOUR_API_KEY>") // Your secret API key
6+
.setSession("") // The user session to authenticate with
77

88
let tablesDb = TablesDb(client)
99

0 commit comments

Comments
 (0)