diff --git a/src/bin/cargo/cli.rs b/src/bin/cargo/cli.rs index e0df4523cf0..e431a5939e1 100644 --- a/src/bin/cargo/cli.rs +++ b/src/bin/cargo/cli.rs @@ -438,7 +438,7 @@ See 'cargo help ' for more information on a specific command.\n", .multiple(true) .global(true), ) - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg( opt("color", "Coloring: auto, always, never") .value_name("WHEN") diff --git a/src/bin/cargo/commands/bench.rs b/src/bin/cargo/commands/bench.rs index ed07c75a10a..3c6956c7f90 100644 --- a/src/bin/cargo/commands/bench.rs +++ b/src/bin/cargo/commands/bench.rs @@ -5,7 +5,7 @@ pub fn cli() -> App { subcommand("bench") .setting(AppSettings::TrailingVarArg) .about("Execute all benchmarks of a local package") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg( Arg::with_name("BENCHNAME") .help("If specified, only run benches containing this string in their names"), diff --git a/src/bin/cargo/commands/build.rs b/src/bin/cargo/commands/build.rs index 8d3a51665cb..678d62e2c88 100644 --- a/src/bin/cargo/commands/build.rs +++ b/src/bin/cargo/commands/build.rs @@ -7,7 +7,7 @@ pub fn cli() -> App { // subcommand aliases are handled in aliased_command() // .alias("b") .about("Compile a local package and all of its dependencies") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_package_spec( "Package to build (see `cargo help pkgid`)", "Build all packages in the workspace", diff --git a/src/bin/cargo/commands/check.rs b/src/bin/cargo/commands/check.rs index 138873772c2..1ad7f76e074 100644 --- a/src/bin/cargo/commands/check.rs +++ b/src/bin/cargo/commands/check.rs @@ -7,7 +7,7 @@ pub fn cli() -> App { // subcommand aliases are handled in aliased_command() // .alias("c") .about("Check a local package and all of its dependencies for errors") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_package_spec( "Package(s) to check", "Check all packages in the workspace", diff --git a/src/bin/cargo/commands/clean.rs b/src/bin/cargo/commands/clean.rs index 0c61f30aaaa..bc390be74d9 100644 --- a/src/bin/cargo/commands/clean.rs +++ b/src/bin/cargo/commands/clean.rs @@ -6,7 +6,7 @@ use cargo::util::print_available_packages; pub fn cli() -> App { subcommand("clean") .about("Remove artifacts that cargo has generated in the past") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_package_spec_simple("Package to clean artifacts for") .arg_manifest_path() .arg_target_triple("Target triple to clean output for") diff --git a/src/bin/cargo/commands/doc.rs b/src/bin/cargo/commands/doc.rs index 875cfcfcc46..37ca37030a2 100644 --- a/src/bin/cargo/commands/doc.rs +++ b/src/bin/cargo/commands/doc.rs @@ -7,7 +7,7 @@ pub fn cli() -> App { // subcommand aliases are handled in aliased_command() // .alias("d") .about("Build a package's documentation") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(opt( "open", "Opens the docs in a browser after the operation", diff --git a/src/bin/cargo/commands/fetch.rs b/src/bin/cargo/commands/fetch.rs index 87a9b005acb..eb39b57070f 100644 --- a/src/bin/cargo/commands/fetch.rs +++ b/src/bin/cargo/commands/fetch.rs @@ -6,7 +6,7 @@ use cargo::ops::FetchOptions; pub fn cli() -> App { subcommand("fetch") .about("Fetch dependencies of a package from the network") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_manifest_path() .arg_target_triple("Fetch dependencies for the target triple") .after_help("Run `cargo help fetch` for more detailed information.\n") diff --git a/src/bin/cargo/commands/fix.rs b/src/bin/cargo/commands/fix.rs index fe16ad52fbc..7db1abe38df 100644 --- a/src/bin/cargo/commands/fix.rs +++ b/src/bin/cargo/commands/fix.rs @@ -5,7 +5,7 @@ use cargo::ops::{self, CompileFilter, FilterRule, LibRule}; pub fn cli() -> App { subcommand("fix") .about("Automatically fix lint warnings reported by rustc") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_package_spec( "Package(s) to fix", "Fix all packages in the workspace", diff --git a/src/bin/cargo/commands/generate_lockfile.rs b/src/bin/cargo/commands/generate_lockfile.rs index da4ef17330d..19f2c63a893 100644 --- a/src/bin/cargo/commands/generate_lockfile.rs +++ b/src/bin/cargo/commands/generate_lockfile.rs @@ -5,7 +5,7 @@ use cargo::ops; pub fn cli() -> App { subcommand("generate-lockfile") .about("Generate the lockfile for a package") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_manifest_path() .after_help("Run `cargo help generate-lockfile` for more detailed information.\n") } diff --git a/src/bin/cargo/commands/init.rs b/src/bin/cargo/commands/init.rs index f3f1440d15b..0cc0d072fe3 100644 --- a/src/bin/cargo/commands/init.rs +++ b/src/bin/cargo/commands/init.rs @@ -5,7 +5,7 @@ use cargo::ops; pub fn cli() -> App { subcommand("init") .about("Create a new cargo package in an existing directory") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("path").default_value(".")) .arg(opt("registry", "Registry to use").value_name("REGISTRY")) .arg_new_opts() diff --git a/src/bin/cargo/commands/install.rs b/src/bin/cargo/commands/install.rs index 922eaddf3eb..56ea10c39e9 100644 --- a/src/bin/cargo/commands/install.rs +++ b/src/bin/cargo/commands/install.rs @@ -7,7 +7,7 @@ use cargo::util::IntoUrl; pub fn cli() -> App { subcommand("install") .about("Install a Rust binary. Default location is $HOME/.cargo/bin") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("crate").empty_values(false).multiple(true)) .arg( opt("version", "Specify a version to install") diff --git a/src/bin/cargo/commands/locate_project.rs b/src/bin/cargo/commands/locate_project.rs index 16a76f6cfea..5701de93dee 100644 --- a/src/bin/cargo/commands/locate_project.rs +++ b/src/bin/cargo/commands/locate_project.rs @@ -6,7 +6,7 @@ use serde::Serialize; pub fn cli() -> App { subcommand("locate-project") .about("Print a JSON representation of a Cargo.toml file's location") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_manifest_path() .arg( opt( diff --git a/src/bin/cargo/commands/login.rs b/src/bin/cargo/commands/login.rs index db254948285..a589a0c9e40 100644 --- a/src/bin/cargo/commands/login.rs +++ b/src/bin/cargo/commands/login.rs @@ -8,7 +8,7 @@ pub fn cli() -> App { "Save an api token from the registry locally. \ If token is not specified, it will be read from stdin.", ) - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("token")) // --host is deprecated (use --registry instead) .arg( diff --git a/src/bin/cargo/commands/logout.rs b/src/bin/cargo/commands/logout.rs index 417063b488d..47456f8f7ad 100644 --- a/src/bin/cargo/commands/logout.rs +++ b/src/bin/cargo/commands/logout.rs @@ -4,7 +4,7 @@ use cargo::ops; pub fn cli() -> App { subcommand("logout") .about("Remove an API token from the registry locally") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(opt("registry", "Registry to use").value_name("REGISTRY")) .after_help("Run `cargo help logout` for more detailed information.\n") } diff --git a/src/bin/cargo/commands/new.rs b/src/bin/cargo/commands/new.rs index a1c64439981..0d6ce42dba9 100644 --- a/src/bin/cargo/commands/new.rs +++ b/src/bin/cargo/commands/new.rs @@ -5,7 +5,7 @@ use cargo::ops; pub fn cli() -> App { subcommand("new") .about("Create a new cargo package at ") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("path").required(true)) .arg(opt("registry", "Registry to use").value_name("REGISTRY")) .arg_new_opts() diff --git a/src/bin/cargo/commands/owner.rs b/src/bin/cargo/commands/owner.rs index 621e75f72ec..7adfbb705d5 100644 --- a/src/bin/cargo/commands/owner.rs +++ b/src/bin/cargo/commands/owner.rs @@ -5,7 +5,7 @@ use cargo::ops::{self, OwnersOptions}; pub fn cli() -> App { subcommand("owner") .about("Manage the owners of a crate on the registry") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("crate")) .arg( multi_opt( diff --git a/src/bin/cargo/commands/package.rs b/src/bin/cargo/commands/package.rs index 081aa64e442..f71d2fdb965 100644 --- a/src/bin/cargo/commands/package.rs +++ b/src/bin/cargo/commands/package.rs @@ -5,7 +5,7 @@ use cargo::ops::{self, PackageOpts}; pub fn cli() -> App { subcommand("package") .about("Assemble the local package into a distributable tarball") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg( opt( "list", diff --git a/src/bin/cargo/commands/pkgid.rs b/src/bin/cargo/commands/pkgid.rs index 3b822355664..46c27882c52 100644 --- a/src/bin/cargo/commands/pkgid.rs +++ b/src/bin/cargo/commands/pkgid.rs @@ -6,7 +6,7 @@ use cargo::util::print_available_packages; pub fn cli() -> App { subcommand("pkgid") .about("Print a fully qualified package specification") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("spec")) .arg_package("Argument to get the package ID specifier for") .arg_manifest_path() diff --git a/src/bin/cargo/commands/publish.rs b/src/bin/cargo/commands/publish.rs index 2120413f26c..f94fbd13461 100644 --- a/src/bin/cargo/commands/publish.rs +++ b/src/bin/cargo/commands/publish.rs @@ -5,7 +5,7 @@ use cargo::ops::{self, PublishOpts}; pub fn cli() -> App { subcommand("publish") .about("Upload a package to the registry") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_index() .arg(opt("token", "Token to use when uploading").value_name("TOKEN")) .arg(opt( diff --git a/src/bin/cargo/commands/read_manifest.rs b/src/bin/cargo/commands/read_manifest.rs index a3e162cf231..0d602ee1df5 100644 --- a/src/bin/cargo/commands/read_manifest.rs +++ b/src/bin/cargo/commands/read_manifest.rs @@ -9,7 +9,7 @@ Print a JSON representation of a Cargo.toml manifest. Deprecated, use `cargo metadata --no-deps` instead.\ ", ) - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_manifest_path() } diff --git a/src/bin/cargo/commands/run.rs b/src/bin/cargo/commands/run.rs index ee74d5ff9e4..acc09bcb75e 100644 --- a/src/bin/cargo/commands/run.rs +++ b/src/bin/cargo/commands/run.rs @@ -10,7 +10,7 @@ pub fn cli() -> App { // .alias("r") .setting(AppSettings::TrailingVarArg) .about("Run a binary or example of the local package") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("args").multiple(true)) .arg_targets_bin_example( "Name of the bin target to run", diff --git a/src/bin/cargo/commands/rustc.rs b/src/bin/cargo/commands/rustc.rs index 646155b6672..d5c6945b6f7 100644 --- a/src/bin/cargo/commands/rustc.rs +++ b/src/bin/cargo/commands/rustc.rs @@ -8,7 +8,7 @@ pub fn cli() -> App { subcommand("rustc") .setting(AppSettings::TrailingVarArg) .about("Compile a package, and pass extra options to the compiler") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("args").multiple(true).help("Rustc flags")) .arg_package("Package to build") .arg_jobs() diff --git a/src/bin/cargo/commands/rustdoc.rs b/src/bin/cargo/commands/rustdoc.rs index 98d3583e3d3..9dffd22a239 100644 --- a/src/bin/cargo/commands/rustdoc.rs +++ b/src/bin/cargo/commands/rustdoc.rs @@ -6,7 +6,7 @@ pub fn cli() -> App { subcommand("rustdoc") .setting(AppSettings::TrailingVarArg) .about("Build a package's documentation, using specified custom flags.") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("args").multiple(true)) .arg(opt( "open", diff --git a/src/bin/cargo/commands/search.rs b/src/bin/cargo/commands/search.rs index 5cb3d081909..3ee9359400f 100644 --- a/src/bin/cargo/commands/search.rs +++ b/src/bin/cargo/commands/search.rs @@ -7,7 +7,7 @@ use cargo::ops; pub fn cli() -> App { subcommand("search") .about("Search packages in crates.io") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("query").multiple(true)) .arg_index() .arg( diff --git a/src/bin/cargo/commands/uninstall.rs b/src/bin/cargo/commands/uninstall.rs index 9577becbbdc..77bba4714e5 100644 --- a/src/bin/cargo/commands/uninstall.rs +++ b/src/bin/cargo/commands/uninstall.rs @@ -5,7 +5,7 @@ use cargo::ops; pub fn cli() -> App { subcommand("uninstall") .about("Remove a Rust binary") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("spec").multiple(true)) .arg_package_spec_simple("Package to uninstall") .arg(multi_opt("bin", "NAME", "Only uninstall the binary NAME")) diff --git a/src/bin/cargo/commands/update.rs b/src/bin/cargo/commands/update.rs index a635ba1cf48..fce9639e287 100644 --- a/src/bin/cargo/commands/update.rs +++ b/src/bin/cargo/commands/update.rs @@ -6,7 +6,7 @@ use cargo::util::print_available_packages; pub fn cli() -> App { subcommand("update") .about("Update dependencies as recorded in the local lock file") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(opt("workspace", "Only update the workspace packages").short("w")) .arg_package_spec_simple("Package to update") .arg(opt( diff --git a/src/bin/cargo/commands/vendor.rs b/src/bin/cargo/commands/vendor.rs index b3705a52665..42eb501a547 100644 --- a/src/bin/cargo/commands/vendor.rs +++ b/src/bin/cargo/commands/vendor.rs @@ -5,7 +5,7 @@ use std::path::PathBuf; pub fn cli() -> App { subcommand("vendor") .about("Vendor all dependencies for a project locally") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_manifest_path() .arg(Arg::with_name("path").help("Where to vendor crates (`vendor` by default)")) .arg( diff --git a/src/bin/cargo/commands/verify_project.rs b/src/bin/cargo/commands/verify_project.rs index aefae36b708..d52694687bb 100644 --- a/src/bin/cargo/commands/verify_project.rs +++ b/src/bin/cargo/commands/verify_project.rs @@ -6,7 +6,7 @@ use std::process; pub fn cli() -> App { subcommand("verify-project") .about("Check correctness of crate manifest") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg_manifest_path() .after_help("Run `cargo help verify-project` for more detailed information.\n") } diff --git a/src/bin/cargo/commands/version.rs b/src/bin/cargo/commands/version.rs index 2f20770d8fd..ed2b3191135 100644 --- a/src/bin/cargo/commands/version.rs +++ b/src/bin/cargo/commands/version.rs @@ -4,7 +4,7 @@ use crate::command_prelude::*; pub fn cli() -> App { subcommand("version") .about("Show version information") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .after_help("Run `cargo help version` for more detailed information.\n") } diff --git a/src/bin/cargo/commands/yank.rs b/src/bin/cargo/commands/yank.rs index 33085beca44..d371088f013 100644 --- a/src/bin/cargo/commands/yank.rs +++ b/src/bin/cargo/commands/yank.rs @@ -5,7 +5,7 @@ use cargo::ops; pub fn cli() -> App { subcommand("yank") .about("Remove a pushed crate from the index") - .arg(opt("quiet", "No output printed to stdout").short("q")) + .arg(opt("quiet", "Do not print cargo log messages").short("q")) .arg(Arg::with_name("crate")) .arg( opt("vers", "The version to yank or un-yank") diff --git a/src/doc/man/generated_txt/cargo-bench.txt b/src/doc/man/generated_txt/cargo-bench.txt index fcb476b8f55..4414c887198 100644 --- a/src/doc/man/generated_txt/cargo-bench.txt +++ b/src/doc/man/generated_txt/cargo-bench.txt @@ -241,7 +241,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-build.txt b/src/doc/man/generated_txt/cargo-build.txt index 4eb1e072a8c..4aa746e95fd 100644 --- a/src/doc/man/generated_txt/cargo-build.txt +++ b/src/doc/man/generated_txt/cargo-build.txt @@ -181,7 +181,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-check.txt b/src/doc/man/generated_txt/cargo-check.txt index 2ca78e6e9ac..28befe66d23 100644 --- a/src/doc/man/generated_txt/cargo-check.txt +++ b/src/doc/man/generated_txt/cargo-check.txt @@ -185,7 +185,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-clean.txt b/src/doc/man/generated_txt/cargo-clean.txt index 9f4530a7ea8..4ffd74dbb71 100644 --- a/src/doc/man/generated_txt/cargo-clean.txt +++ b/src/doc/man/generated_txt/cargo-clean.txt @@ -62,7 +62,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-doc.txt b/src/doc/man/generated_txt/cargo-doc.txt index 648c55e2017..820eed38e0a 100644 --- a/src/doc/man/generated_txt/cargo-doc.txt +++ b/src/doc/man/generated_txt/cargo-doc.txt @@ -156,7 +156,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-fetch.txt b/src/doc/man/generated_txt/cargo-fetch.txt index f714b94f516..646c7a51ce0 100644 --- a/src/doc/man/generated_txt/cargo-fetch.txt +++ b/src/doc/man/generated_txt/cargo-fetch.txt @@ -47,7 +47,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-fix.txt b/src/doc/man/generated_txt/cargo-fix.txt index 60aec632e00..e96c2b01247 100644 --- a/src/doc/man/generated_txt/cargo-fix.txt +++ b/src/doc/man/generated_txt/cargo-fix.txt @@ -258,7 +258,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-generate-lockfile.txt b/src/doc/man/generated_txt/cargo-generate-lockfile.txt index 835183c6e7f..51c86626070 100644 --- a/src/doc/man/generated_txt/cargo-generate-lockfile.txt +++ b/src/doc/man/generated_txt/cargo-generate-lockfile.txt @@ -23,7 +23,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-init.txt b/src/doc/man/generated_txt/cargo-init.txt index 443f8fa0b9e..9094f580ef4 100644 --- a/src/doc/man/generated_txt/cargo-init.txt +++ b/src/doc/man/generated_txt/cargo-init.txt @@ -62,7 +62,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-install.txt b/src/doc/man/generated_txt/cargo-install.txt index 09a20942376..e2660e32d0d 100644 --- a/src/doc/man/generated_txt/cargo-install.txt +++ b/src/doc/man/generated_txt/cargo-install.txt @@ -247,7 +247,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-locate-project.txt b/src/doc/man/generated_txt/cargo-locate-project.txt index 6e43f931f76..b4c4b24f66c 100644 --- a/src/doc/man/generated_txt/cargo-locate-project.txt +++ b/src/doc/man/generated_txt/cargo-locate-project.txt @@ -32,7 +32,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-login.txt b/src/doc/man/generated_txt/cargo-login.txt index 9a3bb0e4da7..f9fef72a01b 100644 --- a/src/doc/man/generated_txt/cargo-login.txt +++ b/src/doc/man/generated_txt/cargo-login.txt @@ -37,7 +37,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-metadata.txt b/src/doc/man/generated_txt/cargo-metadata.txt index 85394a9decb..21a582aee01 100644 --- a/src/doc/man/generated_txt/cargo-metadata.txt +++ b/src/doc/man/generated_txt/cargo-metadata.txt @@ -335,7 +335,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-new.txt b/src/doc/man/generated_txt/cargo-new.txt index 4ea0ccba83d..5f6463ee179 100644 --- a/src/doc/man/generated_txt/cargo-new.txt +++ b/src/doc/man/generated_txt/cargo-new.txt @@ -57,7 +57,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-owner.txt b/src/doc/man/generated_txt/cargo-owner.txt index 80b7b7a6762..610a7676d50 100644 --- a/src/doc/man/generated_txt/cargo-owner.txt +++ b/src/doc/man/generated_txt/cargo-owner.txt @@ -64,7 +64,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-package.txt b/src/doc/man/generated_txt/cargo-package.txt index b24b8ad3502..d312300d655 100644 --- a/src/doc/man/generated_txt/cargo-package.txt +++ b/src/doc/man/generated_txt/cargo-package.txt @@ -197,7 +197,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-pkgid.txt b/src/doc/man/generated_txt/cargo-pkgid.txt index cee20fc122b..4a035f452fe 100644 --- a/src/doc/man/generated_txt/cargo-pkgid.txt +++ b/src/doc/man/generated_txt/cargo-pkgid.txt @@ -53,7 +53,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-publish.txt b/src/doc/man/generated_txt/cargo-publish.txt index f7eca5c4cf2..1ca883e0ded 100644 --- a/src/doc/man/generated_txt/cargo-publish.txt +++ b/src/doc/man/generated_txt/cargo-publish.txt @@ -164,7 +164,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-run.txt b/src/doc/man/generated_txt/cargo-run.txt index 7afb34ae04e..f159a7a0ebc 100644 --- a/src/doc/man/generated_txt/cargo-run.txt +++ b/src/doc/man/generated_txt/cargo-run.txt @@ -101,7 +101,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-rustc.txt b/src/doc/man/generated_txt/cargo-rustc.txt index 1a02a7e05c8..f39d83626de 100644 --- a/src/doc/man/generated_txt/cargo-rustc.txt +++ b/src/doc/man/generated_txt/cargo-rustc.txt @@ -180,7 +180,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-rustdoc.txt b/src/doc/man/generated_txt/cargo-rustdoc.txt index 4d47a2318aa..857d0c0fde3 100644 --- a/src/doc/man/generated_txt/cargo-rustdoc.txt +++ b/src/doc/man/generated_txt/cargo-rustdoc.txt @@ -172,7 +172,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-search.txt b/src/doc/man/generated_txt/cargo-search.txt index 1f20b87a6fc..c56d8fe4cde 100644 --- a/src/doc/man/generated_txt/cargo-search.txt +++ b/src/doc/man/generated_txt/cargo-search.txt @@ -34,7 +34,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-test.txt b/src/doc/man/generated_txt/cargo-test.txt index e0a4c1d94cc..599bbd075fd 100644 --- a/src/doc/man/generated_txt/cargo-test.txt +++ b/src/doc/man/generated_txt/cargo-test.txt @@ -255,7 +255,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-tree.txt b/src/doc/man/generated_txt/cargo-tree.txt index 2218d540f3f..a82e00c2145 100644 --- a/src/doc/man/generated_txt/cargo-tree.txt +++ b/src/doc/man/generated_txt/cargo-tree.txt @@ -244,7 +244,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-uninstall.txt b/src/doc/man/generated_txt/cargo-uninstall.txt index 6a135896071..2c83540ee31 100644 --- a/src/doc/man/generated_txt/cargo-uninstall.txt +++ b/src/doc/man/generated_txt/cargo-uninstall.txt @@ -46,7 +46,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-update.txt b/src/doc/man/generated_txt/cargo-update.txt index b2232fd2fba..df0bb65089d 100644 --- a/src/doc/man/generated_txt/cargo-update.txt +++ b/src/doc/man/generated_txt/cargo-update.txt @@ -53,7 +53,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-vendor.txt b/src/doc/man/generated_txt/cargo-vendor.txt index 8bdc0cef57b..ff017e515b4 100644 --- a/src/doc/man/generated_txt/cargo-vendor.txt +++ b/src/doc/man/generated_txt/cargo-vendor.txt @@ -79,7 +79,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-verify-project.txt b/src/doc/man/generated_txt/cargo-verify-project.txt index 7fe7237137f..ded9cb164d1 100644 --- a/src/doc/man/generated_txt/cargo-verify-project.txt +++ b/src/doc/man/generated_txt/cargo-verify-project.txt @@ -26,7 +26,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo-yank.txt b/src/doc/man/generated_txt/cargo-yank.txt index 08dd675bc2b..b1f2b338fa8 100644 --- a/src/doc/man/generated_txt/cargo-yank.txt +++ b/src/doc/man/generated_txt/cargo-yank.txt @@ -59,7 +59,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/generated_txt/cargo.txt b/src/doc/man/generated_txt/cargo.txt index 94763484f21..4ded9e88c75 100644 --- a/src/doc/man/generated_txt/cargo.txt +++ b/src/doc/man/generated_txt/cargo.txt @@ -136,7 +136,7 @@ OPTIONS value . -q, --quiet - No output printed to stdout. + Do not print cargo log messages. --color when Control when colored output is used. Valid values: diff --git a/src/doc/man/includes/options-display.md b/src/doc/man/includes/options-display.md index b744de82068..051edcae362 100644 --- a/src/doc/man/includes/options-display.md +++ b/src/doc/man/includes/options-display.md @@ -6,7 +6,7 @@ May also be specified with the `term.verbose` {{/option}} {{#option "`-q`" "`--quiet`"}} -No output printed to stdout. +Do not print cargo log messages. {{/option}} {{#option "`--color` _when_"}} diff --git a/src/doc/src/commands/cargo-bench.md b/src/doc/src/commands/cargo-bench.md index 3352230b5f7..fd9ba09a052 100644 --- a/src/doc/src/commands/cargo-bench.md +++ b/src/doc/src/commands/cargo-bench.md @@ -299,7 +299,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-build.md b/src/doc/src/commands/cargo-build.md index c7f5d6290f9..357f3d56120 100644 --- a/src/doc/src/commands/cargo-build.md +++ b/src/doc/src/commands/cargo-build.md @@ -235,7 +235,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-check.md b/src/doc/src/commands/cargo-check.md index a1f319a2bc6..70cd1bafa6e 100644 --- a/src/doc/src/commands/cargo-check.md +++ b/src/doc/src/commands/cargo-check.md @@ -235,7 +235,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-clean.md b/src/doc/src/commands/cargo-clean.md index ba32e8bfdfa..9b16228706b 100644 --- a/src/doc/src/commands/cargo-clean.md +++ b/src/doc/src/commands/cargo-clean.md @@ -84,7 +84,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-doc.md b/src/doc/src/commands/cargo-doc.md index 51f37dedd74..19288eaed13 100644 --- a/src/doc/src/commands/cargo-doc.md +++ b/src/doc/src/commands/cargo-doc.md @@ -209,7 +209,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-fetch.md b/src/doc/src/commands/cargo-fetch.md index 1a7a17d5c35..60fbc28128d 100644 --- a/src/doc/src/commands/cargo-fetch.md +++ b/src/doc/src/commands/cargo-fetch.md @@ -57,7 +57,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-fix.md b/src/doc/src/commands/cargo-fix.md index 100da109e7e..478eaef1b43 100644 --- a/src/doc/src/commands/cargo-fix.md +++ b/src/doc/src/commands/cargo-fix.md @@ -315,7 +315,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-generate-lockfile.md b/src/doc/src/commands/cargo-generate-lockfile.md index e41ea9e2ba6..42f26dbad49 100644 --- a/src/doc/src/commands/cargo-generate-lockfile.md +++ b/src/doc/src/commands/cargo-generate-lockfile.md @@ -32,7 +32,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-init.md b/src/doc/src/commands/cargo-init.md index b6790596a6c..2d1ec7de454 100644 --- a/src/doc/src/commands/cargo-init.md +++ b/src/doc/src/commands/cargo-init.md @@ -80,7 +80,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-install.md b/src/doc/src/commands/cargo-install.md index acb98dbb79c..01cee96d516 100644 --- a/src/doc/src/commands/cargo-install.md +++ b/src/doc/src/commands/cargo-install.md @@ -292,7 +292,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-locate-project.md b/src/doc/src/commands/cargo-locate-project.md index 123dc135173..6c5b32219af 100644 --- a/src/doc/src/commands/cargo-locate-project.md +++ b/src/doc/src/commands/cargo-locate-project.md @@ -46,7 +46,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-login.md b/src/doc/src/commands/cargo-login.md index 23ee8f320bd..ceb14bfee40 100644 --- a/src/doc/src/commands/cargo-login.md +++ b/src/doc/src/commands/cargo-login.md @@ -48,7 +48,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-metadata.md b/src/doc/src/commands/cargo-metadata.md index 40948340255..d7758991823 100644 --- a/src/doc/src/commands/cargo-metadata.md +++ b/src/doc/src/commands/cargo-metadata.md @@ -360,7 +360,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-new.md b/src/doc/src/commands/cargo-new.md index c9257d91293..771d146d867 100644 --- a/src/doc/src/commands/cargo-new.md +++ b/src/doc/src/commands/cargo-new.md @@ -75,7 +75,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-owner.md b/src/doc/src/commands/cargo-owner.md index 7ed275c8bde..d4f0678556d 100644 --- a/src/doc/src/commands/cargo-owner.md +++ b/src/doc/src/commands/cargo-owner.md @@ -86,7 +86,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-package.md b/src/doc/src/commands/cargo-package.md index 2d7ba1f4fa6..2c3126e3dc3 100644 --- a/src/doc/src/commands/cargo-package.md +++ b/src/doc/src/commands/cargo-package.md @@ -243,7 +243,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-pkgid.md b/src/doc/src/commands/cargo-pkgid.md index c380738c943..808376447b7 100644 --- a/src/doc/src/commands/cargo-pkgid.md +++ b/src/doc/src/commands/cargo-pkgid.md @@ -59,7 +59,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-publish.md b/src/doc/src/commands/cargo-publish.md index 6c86ea1fa0d..9be7ae98f0a 100644 --- a/src/doc/src/commands/cargo-publish.md +++ b/src/doc/src/commands/cargo-publish.md @@ -209,7 +209,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-run.md b/src/doc/src/commands/cargo-run.md index 79c51ab19c2..c6e3d9a0a8c 100644 --- a/src/doc/src/commands/cargo-run.md +++ b/src/doc/src/commands/cargo-run.md @@ -145,7 +145,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-rustc.md b/src/doc/src/commands/cargo-rustc.md index 99b780d14af..5601425e6a9 100644 --- a/src/doc/src/commands/cargo-rustc.md +++ b/src/doc/src/commands/cargo-rustc.md @@ -224,7 +224,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-rustdoc.md b/src/doc/src/commands/cargo-rustdoc.md index a7847f1ed7c..719c7f5ca23 100644 --- a/src/doc/src/commands/cargo-rustdoc.md +++ b/src/doc/src/commands/cargo-rustdoc.md @@ -228,7 +228,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-search.md b/src/doc/src/commands/cargo-search.md index e68d89958ed..0018d93367b 100644 --- a/src/doc/src/commands/cargo-search.md +++ b/src/doc/src/commands/cargo-search.md @@ -52,7 +52,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-test.md b/src/doc/src/commands/cargo-test.md index 1eef72fc2d0..1bc44e5ebfc 100644 --- a/src/doc/src/commands/cargo-test.md +++ b/src/doc/src/commands/cargo-test.md @@ -314,7 +314,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-tree.md b/src/doc/src/commands/cargo-tree.md index bc9a0b15872..e608719e992 100644 --- a/src/doc/src/commands/cargo-tree.md +++ b/src/doc/src/commands/cargo-tree.md @@ -280,7 +280,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-uninstall.md b/src/doc/src/commands/cargo-uninstall.md index 1fe35d2468a..646ba33a4f4 100644 --- a/src/doc/src/commands/cargo-uninstall.md +++ b/src/doc/src/commands/cargo-uninstall.md @@ -61,7 +61,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-update.md b/src/doc/src/commands/cargo-update.md index 8b974d79381..291b93ec645 100644 --- a/src/doc/src/commands/cargo-update.md +++ b/src/doc/src/commands/cargo-update.md @@ -70,7 +70,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-vendor.md b/src/doc/src/commands/cargo-vendor.md index 91e10ae7722..81f86a971f0 100644 --- a/src/doc/src/commands/cargo-vendor.md +++ b/src/doc/src/commands/cargo-vendor.md @@ -102,7 +102,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-verify-project.md b/src/doc/src/commands/cargo-verify-project.md index d077c8ab580..ac3401b3128 100644 --- a/src/doc/src/commands/cargo-verify-project.md +++ b/src/doc/src/commands/cargo-verify-project.md @@ -35,7 +35,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo-yank.md b/src/doc/src/commands/cargo-yank.md index c8b21e5885e..b6f29f9fe3b 100644 --- a/src/doc/src/commands/cargo-yank.md +++ b/src/doc/src/commands/cargo-yank.md @@ -79,7 +79,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/doc/src/commands/cargo.md b/src/doc/src/commands/cargo.md index 400307a09e2..2801b9f6167 100644 --- a/src/doc/src/commands/cargo.md +++ b/src/doc/src/commands/cargo.md @@ -160,7 +160,7 @@ May also be specified with the term.verbose
-q
--quiet
-
No output printed to stdout.
+
Do not print cargo log messages.
--color when
diff --git a/src/etc/man/cargo-bench.1 b/src/etc/man/cargo-bench.1 index 5d8df036bfb..87755c4d786 100644 --- a/src/etc/man/cargo-bench.1 +++ b/src/etc/man/cargo-bench.1 @@ -300,7 +300,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-build.1 b/src/etc/man/cargo-build.1 index bdee1436b94..832c70686d2 100644 --- a/src/etc/man/cargo-build.1 +++ b/src/etc/man/cargo-build.1 @@ -219,7 +219,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-check.1 b/src/etc/man/cargo-check.1 index a1456e9832e..420a04212e5 100644 --- a/src/etc/man/cargo-check.1 +++ b/src/etc/man/cargo-check.1 @@ -220,7 +220,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-clean.1 b/src/etc/man/cargo-clean.1 index 01823d991d8..33aa3ea11d1 100644 --- a/src/etc/man/cargo-clean.1 +++ b/src/etc/man/cargo-clean.1 @@ -77,7 +77,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-doc.1 b/src/etc/man/cargo-doc.1 index 32ac9feaf11..5b13991289b 100644 --- a/src/etc/man/cargo-doc.1 +++ b/src/etc/man/cargo-doc.1 @@ -187,7 +187,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-fetch.1 b/src/etc/man/cargo-fetch.1 index bdf8a97e2e4..a0e8afd0daa 100644 --- a/src/etc/man/cargo-fetch.1 +++ b/src/etc/man/cargo-fetch.1 @@ -51,7 +51,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-fix.1 b/src/etc/man/cargo-fix.1 index 97c34bb0139..1bb823fe44e 100644 --- a/src/etc/man/cargo-fix.1 +++ b/src/etc/man/cargo-fix.1 @@ -315,7 +315,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-generate-lockfile.1 b/src/etc/man/cargo-generate-lockfile.1 index 7f32f9f58de..cd3b421bec6 100644 --- a/src/etc/man/cargo-generate-lockfile.1 +++ b/src/etc/man/cargo-generate-lockfile.1 @@ -29,7 +29,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-init.1 b/src/etc/man/cargo-init.1 index 16fc80f780e..f2def367c41 100644 --- a/src/etc/man/cargo-init.1 +++ b/src/etc/man/cargo-init.1 @@ -78,7 +78,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-install.1 b/src/etc/man/cargo-install.1 index 139140279cb..ed719a0e0df 100644 --- a/src/etc/man/cargo-install.1 +++ b/src/etc/man/cargo-install.1 @@ -319,7 +319,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-locate-project.1 b/src/etc/man/cargo-locate-project.1 index b3cb8d76463..2de3be08206 100644 --- a/src/etc/man/cargo-locate-project.1 +++ b/src/etc/man/cargo-locate-project.1 @@ -44,7 +44,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-login.1 b/src/etc/man/cargo-login.1 index c19221b6ac1..de9119dae3c 100644 --- a/src/etc/man/cargo-login.1 +++ b/src/etc/man/cargo-login.1 @@ -42,7 +42,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-metadata.1 b/src/etc/man/cargo-metadata.1 index b35d998ae4b..b0a83363231 100644 --- a/src/etc/man/cargo-metadata.1 +++ b/src/etc/man/cargo-metadata.1 @@ -352,7 +352,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-new.1 b/src/etc/man/cargo-new.1 index 53b23224d0d..51dcbd4dcd5 100644 --- a/src/etc/man/cargo-new.1 +++ b/src/etc/man/cargo-new.1 @@ -73,7 +73,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-owner.1 b/src/etc/man/cargo-owner.1 index c1cbb907fce..9eee069c447 100644 --- a/src/etc/man/cargo-owner.1 +++ b/src/etc/man/cargo-owner.1 @@ -84,7 +84,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-package.1 b/src/etc/man/cargo-package.1 index 6813a7868a4..12ba8d97ca9 100644 --- a/src/etc/man/cargo-package.1 +++ b/src/etc/man/cargo-package.1 @@ -249,7 +249,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-pkgid.1 b/src/etc/man/cargo-pkgid.1 index 4ee1046dd43..599091f1707 100644 --- a/src/etc/man/cargo-pkgid.1 +++ b/src/etc/man/cargo-pkgid.1 @@ -84,7 +84,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-publish.1 b/src/etc/man/cargo-publish.1 index ab30257761f..0f5405dfaaa 100644 --- a/src/etc/man/cargo-publish.1 +++ b/src/etc/man/cargo-publish.1 @@ -199,7 +199,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-run.1 b/src/etc/man/cargo-run.1 index c332d94bda4..ee98a69bfd4 100644 --- a/src/etc/man/cargo-run.1 +++ b/src/etc/man/cargo-run.1 @@ -120,7 +120,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-rustc.1 b/src/etc/man/cargo-rustc.1 index 6daf5a3f37e..f73643102be 100644 --- a/src/etc/man/cargo-rustc.1 +++ b/src/etc/man/cargo-rustc.1 @@ -215,7 +215,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-rustdoc.1 b/src/etc/man/cargo-rustdoc.1 index ad5cfbb187e..01c93eeb9e6 100644 --- a/src/etc/man/cargo-rustdoc.1 +++ b/src/etc/man/cargo-rustdoc.1 @@ -206,7 +206,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-search.1 b/src/etc/man/cargo-search.1 index 25b19b8fcfb..d07523c6ba5 100644 --- a/src/etc/man/cargo-search.1 +++ b/src/etc/man/cargo-search.1 @@ -45,7 +45,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-test.1 b/src/etc/man/cargo-test.1 index ee0d3cf3929..eaa000305d3 100644 --- a/src/etc/man/cargo-test.1 +++ b/src/etc/man/cargo-test.1 @@ -315,7 +315,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-tree.1 b/src/etc/man/cargo-tree.1 index ceefe73ef32..71677c7bcb8 100644 --- a/src/etc/man/cargo-tree.1 +++ b/src/etc/man/cargo-tree.1 @@ -317,7 +317,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-uninstall.1 b/src/etc/man/cargo-uninstall.1 index 6a0499466bb..8247d632714 100644 --- a/src/etc/man/cargo-uninstall.1 +++ b/src/etc/man/cargo-uninstall.1 @@ -68,7 +68,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-update.1 b/src/etc/man/cargo-update.1 index ee977985480..cbd9e90bfbe 100644 --- a/src/etc/man/cargo-update.1 +++ b/src/etc/man/cargo-update.1 @@ -69,7 +69,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-vendor.1 b/src/etc/man/cargo-vendor.1 index dc543cc77f6..42b771fc68e 100644 --- a/src/etc/man/cargo-vendor.1 +++ b/src/etc/man/cargo-vendor.1 @@ -96,7 +96,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-verify-project.1 b/src/etc/man/cargo-verify-project.1 index 842591cb73b..0da5e5aaa33 100644 --- a/src/etc/man/cargo-verify-project.1 +++ b/src/etc/man/cargo-verify-project.1 @@ -39,7 +39,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo-yank.1 b/src/etc/man/cargo-yank.1 index 947369aa1af..1cec70cdb07 100644 --- a/src/etc/man/cargo-yank.1 +++ b/src/etc/man/cargo-yank.1 @@ -73,7 +73,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR diff --git a/src/etc/man/cargo.1 b/src/etc/man/cargo.1 index 4092261e886..6f58c26db59 100644 --- a/src/etc/man/cargo.1 +++ b/src/etc/man/cargo.1 @@ -178,7 +178,7 @@ May also be specified with the \fBterm.verbose\fR \fB\-q\fR, \fB\-\-quiet\fR .RS 4 -No output printed to stdout. +Do not print cargo log messages. .RE .sp \fB\-\-color\fR \fIwhen\fR