Skip to content

Commit a4ab105

Browse files
committed
fix docs
1 parent 962e4a8 commit a4ab105

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/examples/account/create-magic-u-r-l-session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ func main() {
77

88
let account = Account(client)
99
account.createMagicURLSession(
10-
userId: "",
10+
userId: "[USER_ID]",
1111
1212
) { result in
1313
switch result {

docs/examples/account/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ func main() {
77

88
let account = Account(client)
99
account.create(
10-
userId: "",
10+
userId: "[USER_ID]",
1111
1212
password: "password"
1313
) { result in

docs/examples/account/update-magic-u-r-l-session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ func main() {
77

88
let account = Account(client)
99
account.updateMagicURLSession(
10-
userId: "",
10+
userId: "[USER_ID]",
1111
secret: "[SECRET]"
1212
) { result in
1313
switch result {

docs/examples/database/create-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ func main() {
88
let database = Database(client)
99
database.createDocument(
1010
collectionId: "[COLLECTION_ID]",
11-
documentId: "",
11+
documentId: "[DOCUMENT_ID]",
1212
data:
1313
) { result in
1414
switch result {

docs/examples/storage/create-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ func main() {
77

88
let storage = Storage(client)
99
storage.createFile(
10-
fileId: "",
10+
fileId: "[FILE_ID]",
1111
file: File(name: "image.jpg", buffer: yourByteBuffer)
1212
) { result in
1313
switch result {

docs/examples/teams/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ func main() {
77

88
let teams = Teams(client)
99
teams.create(
10-
teamId: "",
10+
teamId: "[TEAM_ID]",
1111
name: "[NAME]"
1212
) { result in
1313
switch result {

0 commit comments

Comments
 (0)