Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): Fix quoting of boolean param in CLI example #684

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -16459,7 +16459,7 @@
},
{
"lang": "CLI v2",
"source": "phrase projects create \\\n--data '{\"name\": \"My Android Project\", \"main_format\":\"yml\", \"shares_translation_memory\":\"true\"}' \\\n--access_token <token>"
"source": "phrase projects create \\\n--data '{\"name\": \"My Android Project\", \"main_format\":\"yml\", \"shares_translation_memory\":true}' \\\n--access_token <token>"
}
],
"requestBody": {
Expand Down
2 changes: 1 addition & 1 deletion paths/projects/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ x-code-samples:
- lang: CLI v2
source: |-
phrase projects create \
--data '{"name": "My Android Project", "main_format":"yml", "shares_translation_memory":"true"}' \
--data '{"name": "My Android Project", "main_format":"yml", "shares_translation_memory":true}' \
--access_token <token>
requestBody:
required: true
Expand Down
Loading