From 9f38142522b92d7b2648ebadebe372869b8a63b7 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 4 Jun 2023 11:27:50 +0200 Subject: [PATCH] add uuhelp to the ignore spell --- Cargo.toml | 2 +- src/bin/uudoc.rs | 2 +- src/uucore_procs/Cargo.toml | 1 + src/uucore_procs/src/lib.rs | 2 +- src/uuhelp_parser/Cargo.toml | 1 + util/publish.sh | 1 + util/update-version.sh | 2 ++ 7 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a5c768468..c2d858d92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ # coreutils (uutils) # * see the repository LICENSE, README, and CONTRIBUTING files for more information -# spell-checker:ignore (libs) libselinux gethostid procfs bigdecimal kqueue fundu mangen humantime +# spell-checker:ignore (libs) libselinux gethostid procfs bigdecimal kqueue fundu mangen humantime uuhelp [package] name = "coreutils" diff --git a/src/bin/uudoc.rs b/src/bin/uudoc.rs index e37925825..5ac858226 100644 --- a/src/bin/uudoc.rs +++ b/src/bin/uudoc.rs @@ -2,7 +2,7 @@ // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -// spell-checker:ignore tldr +// spell-checker:ignore tldr uuhelp use clap::Command; use std::collections::HashMap; diff --git a/src/uucore_procs/Cargo.toml b/src/uucore_procs/Cargo.toml index 9da5e5ab2..eedc9001c 100644 --- a/src/uucore_procs/Cargo.toml +++ b/src/uucore_procs/Cargo.toml @@ -1,3 +1,4 @@ +# spell-checker:ignore uuhelp [package] name = "uucore_procs" version = "0.0.19" diff --git a/src/uucore_procs/src/lib.rs b/src/uucore_procs/src/lib.rs index ba32f649b..b78da7822 100644 --- a/src/uucore_procs/src/lib.rs +++ b/src/uucore_procs/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) ~ Roy Ivy III ; MIT license -// spell-checker:ignore backticks +// spell-checker:ignore backticks uuhelp use std::{fs::File, io::Read, path::PathBuf}; diff --git a/src/uuhelp_parser/Cargo.toml b/src/uuhelp_parser/Cargo.toml index ced3a0893..888d07534 100644 --- a/src/uuhelp_parser/Cargo.toml +++ b/src/uuhelp_parser/Cargo.toml @@ -1,3 +1,4 @@ +# spell-checker:ignore uuhelp [package] name = "uuhelp_parser" version = "0.0.19" diff --git a/util/publish.sh b/util/publish.sh index b656f6229..71830f1f9 100755 --- a/util/publish.sh +++ b/util/publish.sh @@ -1,4 +1,5 @@ #!/bin/sh +# spell-checker:ignore uuhelp ARG="" if test "$1" != "--do-it"; then ARG="--dry-run --allow-dirty" diff --git a/util/update-version.sh b/util/update-version.sh index 106f296fc..0fd15422a 100755 --- a/util/update-version.sh +++ b/util/update-version.sh @@ -1,4 +1,6 @@ #!/bin/sh +# spell-checker:ignore uuhelp + # This is a stupid helper. I will mass replace all versions (including other crates) # So, it should be triple-checked