Skip to content

Commit

Permalink
Improve --typechecked help text
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig committed Dec 18, 2024
1 parent 00b81f1 commit cc8c5bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/database/create.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function buildCreateCommand(yargs) {
typechecked: {
type: "boolean",
description:
"Enable typechecking for the database. Defaults to the typechecking setting of the parent database.",
"Enable typechecking for the database. Use --no-typechecked to disable. Defaults to enabled for top-level databases. Inherits the parent database's setting for child databases.",
},
protected: {
type: "boolean",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/local.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function buildLocalCommand(yargs) {
},
typechecked: {
describe:
"Enable typechecking for the database. Valid only if --database is set.",
"Enable typechecking for the database. Use --no-typechecked to disable. Defaults to enabled for top-level databases. Inherits the parent database's setting for child databases. Valid only if --database is set.",
type: "boolean",
},
protected: {
Expand Down

0 comments on commit cc8c5bb

Please sign in to comment.