1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

docs/codespell ~ fix spelling errors

This commit is contained in:
Roy Ivy III 2020-05-23 20:34:57 -05:00
parent 785bac49b8
commit 6cb609aeee
5 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
# spell-checker:words POSIX SDK SDKs repo toolchain toolchains
# spell-checker:ignore ABI ARCH BACKTRACE BINDIR COMNTOOLS MINGW MINGWDIR MSVC MSYS USERPROFILE cl dllcrt findstr maint mkdir rustc rustlib rustup targetting uutils vcvarsall
# spell-checker:ignore ABI ARCH BACKTRACE BINDIR COMNTOOLS MINGW MINGWDIR MSVC MSYS USERPROFILE cl dllcrt findstr maint mkdir rustc rustlib rustup uutils vcvarsall
version: "{build} ~ {branch}"

View file

@ -869,7 +869,7 @@ fn copy_source(
/// Read the contents of the directory `root` and recursively copy the
/// contents to `target`.
///
/// Any errors encounted copying files in the tree will be logged but
/// Any errors encountered copying files in the tree will be logged but
/// will not cause a short-circuit.
fn copy_directory(root: &Path, target: &Target, options: &Options) -> CopyResult<()> {
if !options.recursive {

View file

@ -136,7 +136,7 @@ fn parse_opts(args: Vec<String>) -> getopts::Matches {
.optflagopt(
"g",
"group",
"(unimplemented) set group ownership, instead of process'\n \
"(unimplemented) set group ownership, instead of process's\n \
current group",
"GROUP",
)

View file

@ -3,7 +3,7 @@ name = "uu_whoami"
version = "0.0.1"
authors = []
license = "MIT"
description = "Diplay effective user ID"
description = "Display effective user ID"
[lib]
path = "src/whoami.rs"

View file

@ -10,9 +10,9 @@ static TEST_TEMPLATE5: &'static str = "tempXXX";
static TEST_TEMPLATE6: &'static str = "tempXXXlate";
static TEST_TEMPLATE7: &'static str = "XXXtemplate";
#[cfg(unix)]
static TEST_TEMPLATE8: &'static str = "tempXXXla/te";
static TEST_TEMPLATE8: &'static str = "tempXXXl/ate";
#[cfg(windows)]
static TEST_TEMPLATE8: &'static str = "tempXXXla\\te";
static TEST_TEMPLATE8: &'static str = "tempXXXl\\ate";
const TMPDIR: &'static str = "TMPDIR";