diff --git a/crates/xtask-bump-check/src/xtask.rs b/crates/xtask-bump-check/src/xtask.rs
index 0e05b120a..6f8dffc75 100644
--- a/crates/xtask-bump-check/src/xtask.rs
+++ b/crates/xtask-bump-check/src/xtask.rs
@@ -53,8 +53,8 @@ pub fn cli() -> clap::Command {
)
.arg(opt("base-rev", "Git revision to lookup for a baseline"))
.arg(opt("head-rev", "Git revision with changes"))
- .arg(flag("frozen", "Require Cargo.lock and cache are up to date").global(true))
- .arg(flag("locked", "Require Cargo.lock is up to date").global(true))
+ .arg(flag("frozen", "Require Cargo.lock and cache to be up-to-date").global(true))
+ .arg(flag("locked", "Require Cargo.lock to be up-to-date").global(true))
.arg(flag("offline", "Run without accessing the network").global(true))
.arg(multi_opt("config", "KEY=VALUE", "Override a configuration value").global(true))
.arg(
diff --git a/src/bin/cargo/cli.rs b/src/bin/cargo/cli.rs
index fc5896065..40a8ae706 100644
--- a/src/bin/cargo/cli.rs
+++ b/src/bin/cargo/cli.rs
@@ -640,12 +640,12 @@ See 'cargo help> <>>' for more information on a sp
.value_parser(clap::builder::ValueParser::path_buf()),
)
.arg(
- flag("frozen", "Require Cargo.lock and cache are up to date")
+ flag("frozen", "Require Cargo.lock and cache to be up-to-date")
.help_heading(heading::MANIFEST_OPTIONS)
.global(true),
)
.arg(
- flag("locked", "Require Cargo.lock is up to date")
+ flag("locked", "Require Cargo.lock to be up-to-date")
.help_heading(heading::MANIFEST_OPTIONS)
.global(true),
)
diff --git a/src/doc/man/generated_txt/cargo-add.txt b/src/doc/man/generated_txt/cargo-add.txt
index d9ec429c2..a7246e38a 100644
--- a/src/doc/man/generated_txt/cargo-add.txt
+++ b/src/doc/man/generated_txt/cargo-add.txt
@@ -172,7 +172,7 @@ OPTIONS
Add dependencies to only the specified package.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-bench.txt b/src/doc/man/generated_txt/cargo-bench.txt
index a7013a077..03448ee50 100644
--- a/src/doc/man/generated_txt/cargo-bench.txt
+++ b/src/doc/man/generated_txt/cargo-bench.txt
@@ -339,7 +339,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-build.txt b/src/doc/man/generated_txt/cargo-build.txt
index db39e2011..dd404a3ed 100644
--- a/src/doc/man/generated_txt/cargo-build.txt
+++ b/src/doc/man/generated_txt/cargo-build.txt
@@ -273,7 +273,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-check.txt b/src/doc/man/generated_txt/cargo-check.txt
index 5a3ea18f4..6135fdc21 100644
--- a/src/doc/man/generated_txt/cargo-check.txt
+++ b/src/doc/man/generated_txt/cargo-check.txt
@@ -258,7 +258,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-clean.txt b/src/doc/man/generated_txt/cargo-clean.txt
index d6b7facf4..38e48cb52 100644
--- a/src/doc/man/generated_txt/cargo-clean.txt
+++ b/src/doc/man/generated_txt/cargo-clean.txt
@@ -92,7 +92,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-doc.txt b/src/doc/man/generated_txt/cargo-doc.txt
index f34e08df9..d5e6ddf49 100644
--- a/src/doc/man/generated_txt/cargo-doc.txt
+++ b/src/doc/man/generated_txt/cargo-doc.txt
@@ -229,7 +229,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-fetch.txt b/src/doc/man/generated_txt/cargo-fetch.txt
index 1c30a3540..bf9c3c215 100644
--- a/src/doc/man/generated_txt/cargo-fetch.txt
+++ b/src/doc/man/generated_txt/cargo-fetch.txt
@@ -72,7 +72,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-fix.txt b/src/doc/man/generated_txt/cargo-fix.txt
index 474c2beb3..25014ab08 100644
--- a/src/doc/man/generated_txt/cargo-fix.txt
+++ b/src/doc/man/generated_txt/cargo-fix.txt
@@ -331,7 +331,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-generate-lockfile.txt b/src/doc/man/generated_txt/cargo-generate-lockfile.txt
index 17f2a37ab..9ec3af709 100644
--- a/src/doc/man/generated_txt/cargo-generate-lockfile.txt
+++ b/src/doc/man/generated_txt/cargo-generate-lockfile.txt
@@ -47,7 +47,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-install.txt b/src/doc/man/generated_txt/cargo-install.txt
index 7b162c85d..e9cd80b42 100644
--- a/src/doc/man/generated_txt/cargo-install.txt
+++ b/src/doc/man/generated_txt/cargo-install.txt
@@ -243,7 +243,7 @@ OPTIONS
Manifest Options
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-metadata.txt b/src/doc/man/generated_txt/cargo-metadata.txt
index b392290c3..7643a021d 100644
--- a/src/doc/man/generated_txt/cargo-metadata.txt
+++ b/src/doc/man/generated_txt/cargo-metadata.txt
@@ -405,7 +405,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-package.txt b/src/doc/man/generated_txt/cargo-package.txt
index 195b35144..1cdf31f49 100644
--- a/src/doc/man/generated_txt/cargo-package.txt
+++ b/src/doc/man/generated_txt/cargo-package.txt
@@ -159,7 +159,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-pkgid.txt b/src/doc/man/generated_txt/cargo-pkgid.txt
index e9b1474e8..e1c889b37 100644
--- a/src/doc/man/generated_txt/cargo-pkgid.txt
+++ b/src/doc/man/generated_txt/cargo-pkgid.txt
@@ -85,7 +85,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-publish.txt b/src/doc/man/generated_txt/cargo-publish.txt
index ab1337d3c..fbffc706c 100644
--- a/src/doc/man/generated_txt/cargo-publish.txt
+++ b/src/doc/man/generated_txt/cargo-publish.txt
@@ -129,7 +129,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-remove.txt b/src/doc/man/generated_txt/cargo-remove.txt
index 53451c289..21a0ec275 100644
--- a/src/doc/man/generated_txt/cargo-remove.txt
+++ b/src/doc/man/generated_txt/cargo-remove.txt
@@ -62,7 +62,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-run.txt b/src/doc/man/generated_txt/cargo-run.txt
index 00e629337..dc9b28229 100644
--- a/src/doc/man/generated_txt/cargo-run.txt
+++ b/src/doc/man/generated_txt/cargo-run.txt
@@ -177,7 +177,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-rustc.txt b/src/doc/man/generated_txt/cargo-rustc.txt
index 866361e93..4e0abc0fd 100644
--- a/src/doc/man/generated_txt/cargo-rustc.txt
+++ b/src/doc/man/generated_txt/cargo-rustc.txt
@@ -275,7 +275,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-rustdoc.txt b/src/doc/man/generated_txt/cargo-rustdoc.txt
index e183ef6fe..3319eb838 100644
--- a/src/doc/man/generated_txt/cargo-rustdoc.txt
+++ b/src/doc/man/generated_txt/cargo-rustdoc.txt
@@ -245,7 +245,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-test.txt b/src/doc/man/generated_txt/cargo-test.txt
index 598c8f9af..f9d1cb343 100644
--- a/src/doc/man/generated_txt/cargo-test.txt
+++ b/src/doc/man/generated_txt/cargo-test.txt
@@ -365,7 +365,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-tree.txt b/src/doc/man/generated_txt/cargo-tree.txt
index c0fa4485f..57e74b118 100644
--- a/src/doc/man/generated_txt/cargo-tree.txt
+++ b/src/doc/man/generated_txt/cargo-tree.txt
@@ -212,7 +212,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-update.txt b/src/doc/man/generated_txt/cargo-update.txt
index 14023dd4a..0f00fa043 100644
--- a/src/doc/man/generated_txt/cargo-update.txt
+++ b/src/doc/man/generated_txt/cargo-update.txt
@@ -82,7 +82,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-vendor.txt b/src/doc/man/generated_txt/cargo-vendor.txt
index 6ad650baa..190497132 100644
--- a/src/doc/man/generated_txt/cargo-vendor.txt
+++ b/src/doc/man/generated_txt/cargo-vendor.txt
@@ -54,7 +54,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/generated_txt/cargo-verify-project.txt b/src/doc/man/generated_txt/cargo-verify-project.txt
index e0e7a4d2b..c790d23aa 100644
--- a/src/doc/man/generated_txt/cargo-verify-project.txt
+++ b/src/doc/man/generated_txt/cargo-verify-project.txt
@@ -50,7 +50,7 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory.
--frozen, --locked
- Either of these flags requires that the Cargo.lock file is
+ Either of these flags requires that the Cargo.lock file be
up-to-date. If the lock file is missing, or it needs to be updated,
Cargo will exit with an error. The --frozen flag also prevents Cargo
from attempting to access the network to determine if it is
diff --git a/src/doc/man/includes/options-locked.md b/src/doc/man/includes/options-locked.md
index 6fd1c9a67..deb86bce0 100644
--- a/src/doc/man/includes/options-locked.md
+++ b/src/doc/man/includes/options-locked.md
@@ -1,5 +1,5 @@
{{#option "`--frozen`" "`--locked`"}}
-Either of these flags requires that the `Cargo.lock` file is
+Either of these flags requires that the `Cargo.lock` file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The `--frozen` flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-add.md b/src/doc/src/commands/cargo-add.md
index ae5e420a9..9f599d37c 100644
--- a/src/doc/src/commands/cargo-add.md
+++ b/src/doc/src/commands/cargo-add.md
@@ -193,7 +193,7 @@ terminal.
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-bench.md b/src/doc/src/commands/cargo-bench.md
index daf29ab1c..8b26e76f1 100644
--- a/src/doc/src/commands/cargo-bench.md
+++ b/src/doc/src/commands/cargo-bench.md
@@ -379,7 +379,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-build.md b/src/doc/src/commands/cargo-build.md
index fff6a45da..fb91f7d2d 100644
--- a/src/doc/src/commands/cargo-build.md
+++ b/src/doc/src/commands/cargo-build.md
@@ -310,7 +310,7 @@ See https://github.com/
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-check.md b/src/doc/src/commands/cargo-check.md
index b90672c8e..f011e5539 100644
--- a/src/doc/src/commands/cargo-check.md
+++ b/src/doc/src/commands/cargo-check.md
@@ -292,7 +292,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-clean.md b/src/doc/src/commands/cargo-clean.md
index 8caf90711..dc9f05e8b 100644
--- a/src/doc/src/commands/cargo-clean.md
+++ b/src/doc/src/commands/cargo-clean.md
@@ -112,7 +112,7 @@ terminal.
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-doc.md b/src/doc/src/commands/cargo-doc.md
index b3370c82f..da56c768c 100644
--- a/src/doc/src/commands/cargo-doc.md
+++ b/src/doc/src/commands/cargo-doc.md
@@ -267,7 +267,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-fetch.md b/src/doc/src/commands/cargo-fetch.md
index 19a001368..04e2de50e 100644
--- a/src/doc/src/commands/cargo-fetch.md
+++ b/src/doc/src/commands/cargo-fetch.md
@@ -81,7 +81,7 @@ terminal.
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-fix.md b/src/doc/src/commands/cargo-fix.md
index bc9dc76a6..5dcc36f07 100644
--- a/src/doc/src/commands/cargo-fix.md
+++ b/src/doc/src/commands/cargo-fix.md
@@ -372,7 +372,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-generate-lockfile.md b/src/doc/src/commands/cargo-generate-lockfile.md
index 8bb22a0fa..dfa4c6996 100644
--- a/src/doc/src/commands/cargo-generate-lockfile.md
+++ b/src/doc/src/commands/cargo-generate-lockfile.md
@@ -60,7 +60,7 @@ terminal.
--frozen
--locked
-Either of these flags requires that the Cargo.lock
file is
+Either of these flags requires that the Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-install.md b/src/doc/src/commands/cargo-install.md
index f4b7a6116..423b9f117 100644
--- a/src/doc/src/commands/cargo-install.md
+++ b/src/doc/src/commands/cargo-install.md
@@ -268,7 +268,7 @@ information about timing information.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-metadata.md b/src/doc/src/commands/cargo-metadata.md
index 6d170eb92..7cbf03daf 100644
--- a/src/doc/src/commands/cargo-metadata.md
+++ b/src/doc/src/commands/cargo-metadata.md
@@ -430,7 +430,7 @@ terminal.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-package.md b/src/doc/src/commands/cargo-package.md
index aa64b8649..2158d202f 100644
--- a/src/doc/src/commands/cargo-package.md
+++ b/src/doc/src/commands/cargo-package.md
@@ -184,7 +184,7 @@ be specified multiple times, which enables all specified features.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-pkgid.md b/src/doc/src/commands/cargo-pkgid.md
index fbaf7af67..523cc3c6e 100644
--- a/src/doc/src/commands/cargo-pkgid.md
+++ b/src/doc/src/commands/cargo-pkgid.md
@@ -92,7 +92,7 @@ terminal.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-publish.md b/src/doc/src/commands/cargo-publish.md
index 873c3e686..d0bbbc074 100644
--- a/src/doc/src/commands/cargo-publish.md
+++ b/src/doc/src/commands/cargo-publish.md
@@ -153,7 +153,7 @@ be specified multiple times, which enables all specified features.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-remove.md b/src/doc/src/commands/cargo-remove.md
index 81f677e19..a59e0232e 100644
--- a/src/doc/src/commands/cargo-remove.md
+++ b/src/doc/src/commands/cargo-remove.md
@@ -83,7 +83,7 @@ terminal.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-run.md b/src/doc/src/commands/cargo-run.md
index ada786479..b79913194 100644
--- a/src/doc/src/commands/cargo-run.md
+++ b/src/doc/src/commands/cargo-run.md
@@ -212,7 +212,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-rustc.md b/src/doc/src/commands/cargo-rustc.md
index ff6b39abe..7ad9bff16 100644
--- a/src/doc/src/commands/cargo-rustc.md
+++ b/src/doc/src/commands/cargo-rustc.md
@@ -306,7 +306,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-rustdoc.md b/src/doc/src/commands/cargo-rustdoc.md
index c81bb5492..0ebb62efb 100644
--- a/src/doc/src/commands/cargo-rustdoc.md
+++ b/src/doc/src/commands/cargo-rustdoc.md
@@ -287,7 +287,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-test.md b/src/doc/src/commands/cargo-test.md
index dd7727acc..127311cc5 100644
--- a/src/doc/src/commands/cargo-test.md
+++ b/src/doc/src/commands/cargo-test.md
@@ -408,7 +408,7 @@ coming from rustc are still emitted. Cannot be used with human
or <
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-tree.md b/src/doc/src/commands/cargo-tree.md
index a859f2743..5997c9d20 100644
--- a/src/doc/src/commands/cargo-tree.md
+++ b/src/doc/src/commands/cargo-tree.md
@@ -224,7 +224,7 @@ single quotes or double quotes around each pattern.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-update.md b/src/doc/src/commands/cargo-update.md
index be38dd4d2..f8d90903f 100644
--- a/src/doc/src/commands/cargo-update.md
+++ b/src/doc/src/commands/cargo-update.md
@@ -101,7 +101,7 @@ terminal.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-vendor.md b/src/doc/src/commands/cargo-vendor.md
index bcb767c59..542333afb 100644
--- a/src/doc/src/commands/cargo-vendor.md
+++ b/src/doc/src/commands/cargo-vendor.md
@@ -70,7 +70,7 @@ only a subset of the packages have changed.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/doc/src/commands/cargo-verify-project.md b/src/doc/src/commands/cargo-verify-project.md
index e27724b92..a62ee2aaa 100644
--- a/src/doc/src/commands/cargo-verify-project.md
+++ b/src/doc/src/commands/cargo-verify-project.md
@@ -65,7 +65,7 @@ terminal.
--frozen
--locked
-- Either of these flags requires that the
Cargo.lock
file is
+- Either of these flags requires that the
Cargo.lock
file be
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The --frozen
flag also prevents Cargo from
attempting to access the network to determine if it is out-of-date.
diff --git a/src/etc/man/cargo-add.1 b/src/etc/man/cargo-add.1
index fc585fba6..c44a48346 100644
--- a/src/etc/man/cargo-add.1
+++ b/src/etc/man/cargo-add.1
@@ -224,7 +224,7 @@ Add dependencies to only the specified package.
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-bench.1 b/src/etc/man/cargo-bench.1
index d97253925..4f1ff291a 100644
--- a/src/etc/man/cargo-bench.1
+++ b/src/etc/man/cargo-bench.1
@@ -420,7 +420,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-build.1 b/src/etc/man/cargo-build.1
index ba6ab38cd..b0f04738a 100644
--- a/src/etc/man/cargo-build.1
+++ b/src/etc/man/cargo-build.1
@@ -338,7 +338,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-check.1 b/src/etc/man/cargo-check.1
index 733b4b2fe..2e2d8a6b0 100644
--- a/src/etc/man/cargo-check.1
+++ b/src/etc/man/cargo-check.1
@@ -319,7 +319,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-clean.1 b/src/etc/man/cargo-clean.1
index d71b0e027..621804d1b 100644
--- a/src/etc/man/cargo-clean.1
+++ b/src/etc/man/cargo-clean.1
@@ -118,7 +118,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-doc.1 b/src/etc/man/cargo-doc.1
index 5a61c0f3d..3832e7282 100644
--- a/src/etc/man/cargo-doc.1
+++ b/src/etc/man/cargo-doc.1
@@ -286,7 +286,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-fetch.1 b/src/etc/man/cargo-fetch.1
index 428dc882a..b63b9090c 100644
--- a/src/etc/man/cargo-fetch.1
+++ b/src/etc/man/cargo-fetch.1
@@ -86,7 +86,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-fix.1 b/src/etc/man/cargo-fix.1
index 27599a1fa..22ac0b7ed 100644
--- a/src/etc/man/cargo-fix.1
+++ b/src/etc/man/cargo-fix.1
@@ -414,7 +414,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-generate-lockfile.1 b/src/etc/man/cargo-generate-lockfile.1
index 075f6324c..c98366c57 100644
--- a/src/etc/man/cargo-generate-lockfile.1
+++ b/src/etc/man/cargo-generate-lockfile.1
@@ -65,7 +65,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-install.1 b/src/etc/man/cargo-install.1
index 44de0a805..8ab35749a 100644
--- a/src/etc/man/cargo-install.1
+++ b/src/etc/man/cargo-install.1
@@ -305,7 +305,7 @@ information about timing information.
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-metadata.1 b/src/etc/man/cargo-metadata.1
index fe27b1400..a020153d2 100644
--- a/src/etc/man/cargo-metadata.1
+++ b/src/etc/man/cargo-metadata.1
@@ -439,7 +439,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-package.1 b/src/etc/man/cargo-package.1
index f565ad7d4..b88b7a6a4 100644
--- a/src/etc/man/cargo-package.1
+++ b/src/etc/man/cargo-package.1
@@ -201,7 +201,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-pkgid.1 b/src/etc/man/cargo-pkgid.1
index e10efc38a..bc5e99d4f 100644
--- a/src/etc/man/cargo-pkgid.1
+++ b/src/etc/man/cargo-pkgid.1
@@ -124,7 +124,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-publish.1 b/src/etc/man/cargo-publish.1
index d16cc4a41..bf4cea1c2 100644
--- a/src/etc/man/cargo-publish.1
+++ b/src/etc/man/cargo-publish.1
@@ -157,7 +157,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-remove.1 b/src/etc/man/cargo-remove.1
index 404981617..0c632083c 100644
--- a/src/etc/man/cargo-remove.1
+++ b/src/etc/man/cargo-remove.1
@@ -84,7 +84,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-run.1 b/src/etc/man/cargo-run.1
index 29bfae8b8..58569d77e 100644
--- a/src/etc/man/cargo-run.1
+++ b/src/etc/man/cargo-run.1
@@ -223,7 +223,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-rustc.1 b/src/etc/man/cargo-rustc.1
index 1fc7d74b0..e5f963f79 100644
--- a/src/etc/man/cargo-rustc.1
+++ b/src/etc/man/cargo-rustc.1
@@ -337,7 +337,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-rustdoc.1 b/src/etc/man/cargo-rustdoc.1
index 93773ae2f..4e7216c67 100644
--- a/src/etc/man/cargo-rustdoc.1
+++ b/src/etc/man/cargo-rustdoc.1
@@ -305,7 +305,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-test.1 b/src/etc/man/cargo-test.1
index b4eb11721..d760c8556 100644
--- a/src/etc/man/cargo-test.1
+++ b/src/etc/man/cargo-test.1
@@ -447,7 +447,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-tree.1 b/src/etc/man/cargo-tree.1
index 7861c28fb..280aec235 100644
--- a/src/etc/man/cargo-tree.1
+++ b/src/etc/man/cargo-tree.1
@@ -269,7 +269,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-update.1 b/src/etc/man/cargo-update.1
index 943c87b46..ac1e5a7a1 100644
--- a/src/etc/man/cargo-update.1
+++ b/src/etc/man/cargo-update.1
@@ -108,7 +108,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-vendor.1 b/src/etc/man/cargo-vendor.1
index a12db8cef..92bd9f34c 100644
--- a/src/etc/man/cargo-vendor.1
+++ b/src/etc/man/cargo-vendor.1
@@ -65,7 +65,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/src/etc/man/cargo-verify-project.1 b/src/etc/man/cargo-verify-project.1
index d067dd665..1e36a66b6 100644
--- a/src/etc/man/cargo-verify-project.1
+++ b/src/etc/man/cargo-verify-project.1
@@ -75,7 +75,7 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
\fB\-\-frozen\fR,
\fB\-\-locked\fR
.RS 4
-Either of these flags requires that the \fBCargo.lock\fR file is
+Either of these flags requires that the \fBCargo.lock\fR file be
up\-to\-date. If the lock file is missing, or it needs to be updated, Cargo will
exit with an error. The \fB\-\-frozen\fR flag also prevents Cargo from
attempting to access the network to determine if it is out\-of\-date.
diff --git a/tests/testsuite/cargo/help/stdout.term.svg b/tests/testsuite/cargo/help/stdout.term.svg
index c3b066fd6..e29e2acff 100644
--- a/tests/testsuite/cargo/help/stdout.term.svg
+++ b/tests/testsuite/cargo/help/stdout.term.svg
@@ -45,9 +45,9 @@
-C <DIRECTORY> Change to DIRECTORY before doing anything (nightly-only)
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_add/help/stdout.term.svg b/tests/testsuite/cargo_add/help/stdout.term.svg
index dab4c43ec..b6a4a476e 100644
--- a/tests/testsuite/cargo_add/help/stdout.term.svg
+++ b/tests/testsuite/cargo_add/help/stdout.term.svg
@@ -181,13 +181,13 @@
--frozen
- Require Cargo.lock and cache are up to date
+ Require Cargo.lock and cache to be up-to-date
--locked
- Require Cargo.lock is up to date
+ Require Cargo.lock to be up-to-date
diff --git a/tests/testsuite/cargo_bench/help/stdout.term.svg b/tests/testsuite/cargo_bench/help/stdout.term.svg
index 02045214e..1ea535a0b 100644
--- a/tests/testsuite/cargo_bench/help/stdout.term.svg
+++ b/tests/testsuite/cargo_bench/help/stdout.term.svg
@@ -127,9 +127,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_build/help/stdout.term.svg b/tests/testsuite/cargo_build/help/stdout.term.svg
index 6f0982aae..92095ae15 100644
--- a/tests/testsuite/cargo_build/help/stdout.term.svg
+++ b/tests/testsuite/cargo_build/help/stdout.term.svg
@@ -125,9 +125,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_check/help/stdout.term.svg b/tests/testsuite/cargo_check/help/stdout.term.svg
index aa654c95d..8ef0b9b32 100644
--- a/tests/testsuite/cargo_check/help/stdout.term.svg
+++ b/tests/testsuite/cargo_check/help/stdout.term.svg
@@ -121,9 +121,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_clean/help/stdout.term.svg b/tests/testsuite/cargo_clean/help/stdout.term.svg
index d451cddf9..9af234f7b 100644
--- a/tests/testsuite/cargo_clean/help/stdout.term.svg
+++ b/tests/testsuite/cargo_clean/help/stdout.term.svg
@@ -69,9 +69,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_config/help/stdout.term.svg b/tests/testsuite/cargo_config/help/stdout.term.svg
index 7798f7749..a1b954e07 100644
--- a/tests/testsuite/cargo_config/help/stdout.term.svg
+++ b/tests/testsuite/cargo_config/help/stdout.term.svg
@@ -51,9 +51,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_doc/help/stdout.term.svg b/tests/testsuite/cargo_doc/help/stdout.term.svg
index 4fe41bb99..8c7bc637f 100644
--- a/tests/testsuite/cargo_doc/help/stdout.term.svg
+++ b/tests/testsuite/cargo_doc/help/stdout.term.svg
@@ -115,9 +115,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_fetch/help/stdout.term.svg b/tests/testsuite/cargo_fetch/help/stdout.term.svg
index 8dca7e8d2..ea89e7e34 100644
--- a/tests/testsuite/cargo_fetch/help/stdout.term.svg
+++ b/tests/testsuite/cargo_fetch/help/stdout.term.svg
@@ -53,9 +53,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_fix/help/stdout.term.svg b/tests/testsuite/cargo_fix/help/stdout.term.svg
index 7e273e22a..658ad3dfe 100644
--- a/tests/testsuite/cargo_fix/help/stdout.term.svg
+++ b/tests/testsuite/cargo_fix/help/stdout.term.svg
@@ -129,9 +129,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_generate_lockfile/help/stdout.term.svg b/tests/testsuite/cargo_generate_lockfile/help/stdout.term.svg
index 941ea80af..fbada69b8 100644
--- a/tests/testsuite/cargo_generate_lockfile/help/stdout.term.svg
+++ b/tests/testsuite/cargo_generate_lockfile/help/stdout.term.svg
@@ -47,9 +47,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_help/help/stdout.term.svg b/tests/testsuite/cargo_help/help/stdout.term.svg
index 901cee097..b63e33f0d 100644
--- a/tests/testsuite/cargo_help/help/stdout.term.svg
+++ b/tests/testsuite/cargo_help/help/stdout.term.svg
@@ -51,9 +51,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_init/help/stdout.term.svg b/tests/testsuite/cargo_init/help/stdout.term.svg
index e95cc8e03..e832172a0 100644
--- a/tests/testsuite/cargo_init/help/stdout.term.svg
+++ b/tests/testsuite/cargo_init/help/stdout.term.svg
@@ -69,9 +69,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_install/help/stdout.term.svg b/tests/testsuite/cargo_install/help/stdout.term.svg
index 5fac48774..9b0579cbf 100644
--- a/tests/testsuite/cargo_install/help/stdout.term.svg
+++ b/tests/testsuite/cargo_install/help/stdout.term.svg
@@ -121,9 +121,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_locate_project/help/stdout.term.svg b/tests/testsuite/cargo_locate_project/help/stdout.term.svg
index f5b3d3e42..b21df68c7 100644
--- a/tests/testsuite/cargo_locate_project/help/stdout.term.svg
+++ b/tests/testsuite/cargo_locate_project/help/stdout.term.svg
@@ -53,9 +53,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_login/help/stdout.term.svg b/tests/testsuite/cargo_login/help/stdout.term.svg
index 5895c0948..bab300ed6 100644
--- a/tests/testsuite/cargo_login/help/stdout.term.svg
+++ b/tests/testsuite/cargo_login/help/stdout.term.svg
@@ -55,9 +55,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_logout/help/stdout.term.svg b/tests/testsuite/cargo_logout/help/stdout.term.svg
index 887a66718..34d28d8b6 100644
--- a/tests/testsuite/cargo_logout/help/stdout.term.svg
+++ b/tests/testsuite/cargo_logout/help/stdout.term.svg
@@ -47,9 +47,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_metadata/help/stdout.term.svg b/tests/testsuite/cargo_metadata/help/stdout.term.svg
index f73956e64..494a95c18 100644
--- a/tests/testsuite/cargo_metadata/help/stdout.term.svg
+++ b/tests/testsuite/cargo_metadata/help/stdout.term.svg
@@ -69,9 +69,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_new/help/stdout.term.svg b/tests/testsuite/cargo_new/help/stdout.term.svg
index 6aae2fb81..bd7a3c59c 100644
--- a/tests/testsuite/cargo_new/help/stdout.term.svg
+++ b/tests/testsuite/cargo_new/help/stdout.term.svg
@@ -69,9 +69,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_owner/help/stdout.term.svg b/tests/testsuite/cargo_owner/help/stdout.term.svg
index 8b020d35c..ade9c448f 100644
--- a/tests/testsuite/cargo_owner/help/stdout.term.svg
+++ b/tests/testsuite/cargo_owner/help/stdout.term.svg
@@ -63,9 +63,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_package/help/stdout.term.svg b/tests/testsuite/cargo_package/help/stdout.term.svg
index 76bdb129c..8a0767191 100644
--- a/tests/testsuite/cargo_package/help/stdout.term.svg
+++ b/tests/testsuite/cargo_package/help/stdout.term.svg
@@ -87,9 +87,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_pkgid/help/stdout.term.svg b/tests/testsuite/cargo_pkgid/help/stdout.term.svg
index 49fc6abff..beee2c2f9 100644
--- a/tests/testsuite/cargo_pkgid/help/stdout.term.svg
+++ b/tests/testsuite/cargo_pkgid/help/stdout.term.svg
@@ -59,9 +59,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_publish/help/stdout.term.svg b/tests/testsuite/cargo_publish/help/stdout.term.svg
index 88121b602..29ba1e1a5 100644
--- a/tests/testsuite/cargo_publish/help/stdout.term.svg
+++ b/tests/testsuite/cargo_publish/help/stdout.term.svg
@@ -87,9 +87,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_read_manifest/help/stdout.term.svg b/tests/testsuite/cargo_read_manifest/help/stdout.term.svg
index bc2f56b7d..06cb56201 100644
--- a/tests/testsuite/cargo_read_manifest/help/stdout.term.svg
+++ b/tests/testsuite/cargo_read_manifest/help/stdout.term.svg
@@ -51,9 +51,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_remove/help/stdout.term.svg b/tests/testsuite/cargo_remove/help/stdout.term.svg
index 6499abed1..7e427d870 100644
--- a/tests/testsuite/cargo_remove/help/stdout.term.svg
+++ b/tests/testsuite/cargo_remove/help/stdout.term.svg
@@ -71,9 +71,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_report/help/stdout.term.svg b/tests/testsuite/cargo_report/help/stdout.term.svg
index 81fa7aff9..d1db5427f 100644
--- a/tests/testsuite/cargo_report/help/stdout.term.svg
+++ b/tests/testsuite/cargo_report/help/stdout.term.svg
@@ -51,9 +51,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_run/help/stdout.term.svg b/tests/testsuite/cargo_run/help/stdout.term.svg
index 96f35f4d4..c4bfa6bb3 100644
--- a/tests/testsuite/cargo_run/help/stdout.term.svg
+++ b/tests/testsuite/cargo_run/help/stdout.term.svg
@@ -103,9 +103,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_rustc/help/stdout.term.svg b/tests/testsuite/cargo_rustc/help/stdout.term.svg
index e3902ceec..d43d6b3bd 100644
--- a/tests/testsuite/cargo_rustc/help/stdout.term.svg
+++ b/tests/testsuite/cargo_rustc/help/stdout.term.svg
@@ -125,9 +125,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_rustdoc/help/stdout.term.svg b/tests/testsuite/cargo_rustdoc/help/stdout.term.svg
index 0098268a2..6564f7e7f 100644
--- a/tests/testsuite/cargo_rustdoc/help/stdout.term.svg
+++ b/tests/testsuite/cargo_rustdoc/help/stdout.term.svg
@@ -123,9 +123,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_search/help/stdout.term.svg b/tests/testsuite/cargo_search/help/stdout.term.svg
index d8a3f8b39..00ca8c7f6 100644
--- a/tests/testsuite/cargo_search/help/stdout.term.svg
+++ b/tests/testsuite/cargo_search/help/stdout.term.svg
@@ -57,9 +57,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_test/help/stdout.term.svg b/tests/testsuite/cargo_test/help/stdout.term.svg
index e2a787895..026a47189 100644
--- a/tests/testsuite/cargo_test/help/stdout.term.svg
+++ b/tests/testsuite/cargo_test/help/stdout.term.svg
@@ -133,9 +133,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_tree/help/stdout.term.svg b/tests/testsuite/cargo_tree/help/stdout.term.svg
index 984758e39..1e3a4ac86 100644
--- a/tests/testsuite/cargo_tree/help/stdout.term.svg
+++ b/tests/testsuite/cargo_tree/help/stdout.term.svg
@@ -97,9 +97,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_uninstall/help/stdout.term.svg b/tests/testsuite/cargo_uninstall/help/stdout.term.svg
index 561ca8576..0f051f912 100644
--- a/tests/testsuite/cargo_uninstall/help/stdout.term.svg
+++ b/tests/testsuite/cargo_uninstall/help/stdout.term.svg
@@ -65,9 +65,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_update/help/stdout.term.svg b/tests/testsuite/cargo_update/help/stdout.term.svg
index 50fd1cf8e..5f1b8dbd4 100644
--- a/tests/testsuite/cargo_update/help/stdout.term.svg
+++ b/tests/testsuite/cargo_update/help/stdout.term.svg
@@ -61,9 +61,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_vendor/help/stdout.term.svg b/tests/testsuite/cargo_vendor/help/stdout.term.svg
index 71c13b4d3..fe7512192 100644
--- a/tests/testsuite/cargo_vendor/help/stdout.term.svg
+++ b/tests/testsuite/cargo_vendor/help/stdout.term.svg
@@ -63,9 +63,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_verify_project/help/stdout.term.svg b/tests/testsuite/cargo_verify_project/help/stdout.term.svg
index 0f75f82f7..b98845098 100644
--- a/tests/testsuite/cargo_verify_project/help/stdout.term.svg
+++ b/tests/testsuite/cargo_verify_project/help/stdout.term.svg
@@ -47,9 +47,9 @@
--manifest-path <PATH> Path to Cargo.toml
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_version/help/stdout.term.svg b/tests/testsuite/cargo_version/help/stdout.term.svg
index 0986ae6e8..dcecb0414 100644
--- a/tests/testsuite/cargo_version/help/stdout.term.svg
+++ b/tests/testsuite/cargo_version/help/stdout.term.svg
@@ -45,9 +45,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network
diff --git a/tests/testsuite/cargo_yank/help/stdout.term.svg b/tests/testsuite/cargo_yank/help/stdout.term.svg
index 7ede65a03..fc5b6e6da 100644
--- a/tests/testsuite/cargo_yank/help/stdout.term.svg
+++ b/tests/testsuite/cargo_yank/help/stdout.term.svg
@@ -61,9 +61,9 @@
Manifest Options:
- --frozen Require Cargo.lock and cache are up to date
+ --frozen Require Cargo.lock and cache to be up-to-date
- --locked Require Cargo.lock is up to date
+ --locked Require Cargo.lock to be up-to-date
--offline Run without accessing the network