diff --git a/README.md b/README.md
index bf21ba00..d56d012d 100644
--- a/README.md
+++ b/README.md
@@ -332,7 +332,7 @@ Options that take no arguments can be negated by prefixing them with `--no-`, e.
--root |
- Runs updates on the root project in addition to specified workspaces. Only allowed with --workspace or --workspaces . (default: true) (default: true) |
+ Runs updates on the root project in addition to specified workspaces. Only allowed with --workspace or --workspaces . (default: true) |
-s, --silent |
diff --git a/src/cli-options.ts b/src/cli-options.ts
index 43fab7ab..89c54c3e 100755
--- a/src/cli-options.ts
+++ b/src/cli-options.ts
@@ -799,7 +799,7 @@ const cliOptions: CLIOption[] = [
long: 'root',
default: true,
description:
- 'Runs updates on the root project in addition to specified workspaces. Only allowed with `--workspace` or `--workspaces`. (default: true)',
+ 'Runs updates on the root project in addition to specified workspaces. Only allowed with `--workspace` or `--workspaces`.',
type: 'boolean',
},
{
diff --git a/src/types/RunOptions.json b/src/types/RunOptions.json
index a3af598e..e235553e 100644
--- a/src/types/RunOptions.json
+++ b/src/types/RunOptions.json
@@ -460,7 +460,7 @@
},
"root": {
"default": true,
- "description": "Runs updates on the root project in addition to specified workspaces. Only allowed with `--workspace` or `--workspaces`. (default: true)",
+ "description": "Runs updates on the root project in addition to specified workspaces. Only allowed with `--workspace` or `--workspaces`.",
"type": "boolean"
},
"silent": {
diff --git a/src/types/RunOptions.ts b/src/types/RunOptions.ts
index ac35d873..84611895 100644
--- a/src/types/RunOptions.ts
+++ b/src/types/RunOptions.ts
@@ -160,7 +160,7 @@ export interface RunOptions {
*/
retry?: number
- /** Runs updates on the root project in addition to specified workspaces. Only allowed with `--workspace` or `--workspaces`. (default: true)
+ /** Runs updates on the root project in addition to specified workspaces. Only allowed with `--workspace` or `--workspaces`.
*
* @default true
*/