Skip to content

Commit

Permalink
[DOCS-4044] Update several feature names to sentence case (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig authored Jan 24, 2025
1 parent 3116623 commit 2331aa0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ To get started:

```shell
# Runs a query in the top-level 'my_db' database
# in the 'us' Region Group. Use the default admin role.
# in the 'us' region group. Use the default admin role.
fauna query "Collection.all()" \
--database us/my_db
```
Expand Down
2 changes: 1 addition & 1 deletion src/commands/database/create.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function buildCreateCommand(yargs) {
.example([
[
"$0 database create --name my_db --database us",
"Create the top-level 'my_db' database in the 'us' Region Group.",
"Create the top-level 'my_db' database in the 'us' region group.",
],
[
"$0 database create --name child_db --database us/parent_db",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/database/delete.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function buildDeleteCommand(yargs) {
.example([
[
"$0 database delete --name my_db --database us",
"Delete the top-level 'my_db' database in the 'us' Region Group.",
"Delete the top-level 'my_db' database in the 'us' region group.",
],
[
"$0 database delete --name child_db --database us/parent_db",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/database/list.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async function doListDatabases(argv) {
if (argv.secret) {
logger.stderr(
chalk.yellow(
"Warning: Full database paths are not available when using --secret. Use --database if a full path, including the Region Group identified and hierarchy, is needed.",
"Warning: Full database paths are not available when using --secret. Use --database if a full path, including the region group identifier and hierarchy, is needed.",
),
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/options.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const DATABASE_PATH_OPTIONS = {
alias: "d",
type: "string",
description:
"Database, including Region Group and hierarchy, to run the command in. Ex: 'us/my_db', 'eu/parent_db/child_db', 'global/db'.",
"Database, including region group and hierarchy, to run the command in. Ex: 'us/my_db', 'eu/parent_db/child_db', 'global/db'.",
group: "API:",
},
};
Expand Down

0 comments on commit 2331aa0

Please sign in to comment.