Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lohanidamodar committed Jan 4, 2022
1 parent e13e859 commit 63ac1a8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/examples/database/create-collection.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
appwrite database createCollection \
--collectionId="" \
--collectionId="[COLLECTION_ID]" \
--name="[NAME]" \
--permission="document" \
--read="["role:all"]" \
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/database/create-document.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
appwrite database createDocument \
--collectionId="[COLLECTION_ID]" \
--documentId="" \
--documentId="[DOCUMENT_ID]" \
--data="{}" \
--read="["role:all"]" \
--write="["role:all"]"
2 changes: 1 addition & 1 deletion docs/examples/functions/create.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
appwrite functions create \
--functionId="" \
--functionId="[FUNCTION_ID]" \
--name="[NAME]" \
--execute="" \
--runtime="node-14.5" \
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/storage/create-file.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
appwrite storage createFile \
--fileId="" \
--fileId="[FILE_ID]" \
--file="" \
--read="" \
--write=""
2 changes: 1 addition & 1 deletion docs/examples/teams/create.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
appwrite teams create \
--teamId="" \
--teamId="[TEAM_ID]" \
--name="[NAME]" \
--roles=""
2 changes: 1 addition & 1 deletion docs/examples/users/create.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
appwrite users create \
--userId="" \
--userId="[USER_ID]" \
--email="[email protected]" \
--password="password" \
--name="[NAME]"

0 comments on commit 63ac1a8

Please sign in to comment.