Skip to content

Commit 3f4d56a

Browse files
committed
fix docs
1 parent 24b258b commit 3f4d56a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/examples/database/create-collection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ client = Client()
1111

1212
database = Database(client)
1313

14-
result = database.create_collection('', '[NAME]', 'document', ["role:all"], ["role:all"])
14+
result = database.create_collection('[COLLECTION_ID]', '[NAME]', 'document', ["role:all"], ["role:all"])

docs/examples/database/create-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ client = Client()
1111

1212
database = Database(client)
1313

14-
result = database.create_document('[COLLECTION_ID]', '', {})
14+
result = database.create_document('[COLLECTION_ID]', '[DOCUMENT_ID]', {})

docs/examples/functions/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ client = Client()
1111

1212
functions = Functions(client)
1313

14-
result = functions.create('', '[NAME]', [], 'node-14.5')
14+
result = functions.create('[FUNCTION_ID]', '[NAME]', [], 'node-14.5')

docs/examples/storage/create-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ client = Client()
1111

1212
storage = Storage(client)
1313

14-
result = storage.create_file('', open('/path/to/file.png', 'rb'))
14+
result = storage.create_file('[FILE_ID]', open('/path/to/file.png', 'rb'))

docs/examples/teams/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ client = Client()
1111

1212
teams = Teams(client)
1313

14-
result = teams.create('', '[NAME]')
14+
result = teams.create('[TEAM_ID]', '[NAME]')

docs/examples/users/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ client = Client()
1111

1212
users = Users(client)
1313

14-
result = users.create('', '[email protected]', 'password')
14+
result = users.create('[USER_ID]', '[email protected]', 'password')

0 commit comments

Comments
 (0)