Skip to content
Prev Previous commit
Next Next commit
refactor: cleaned up syntax by removing unnecessary '='
  • Loading branch information
gurjeetsinghvirdee authored Jan 24, 2025
commit 8508e6009bf062038845daeeb68fb4a23436811a
2 changes: 1 addition & 1 deletion docs/sdks/cli/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ $ appwrite users list

To create a document you can use the following command
```sh
$ appwrite databases create-document --database-id=<DATABASE_ID> --collection-id=<COLLECTION_ID> --document-id="unique()" --data '{"name": "Walter O Brein"}' --permissions 'read("any")' 'read("team:abc")'
$ appwrite databases create-document --database-id <DATABASE_ID> --collection-id <COLLECTION_ID> --document-id "unique()" --data '{"name": "Walter O Brein"}' --permissions 'read("any")' 'read("team:abc")'
```

### Some Gotchas
Expand Down
Loading