From e57167f8448c81e4db3059e113494eaa5c777a76 Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Fri, 29 Nov 2024 04:38:30 -0500 Subject: [PATCH] Copyedit and clarify `CheckMode` doc comment --- tests/it/src/args.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/it/src/args.rs b/tests/it/src/args.rs index 4dab0372c88..e0ccc820ae6 100644 --- a/tests/it/src/args.rs +++ b/tests/it/src/args.rs @@ -64,10 +64,10 @@ pub enum Subcommands { }, /// Check for executable bits that disagree with shebangs. /// - /// This checks and staged files, but not any unstaged files or changes, to find shell scripts + /// This checks committed and staged files, but not anything unstaged, to find shell scripts /// that either begin with a `#!` but not `+x` permissions, or do not begin with `#!` but do /// have `+x` permissions. Such mismatches are reported but not automatically corrected. Some - /// plaforms (at least Windows) do not support such permissions, but Git still represents them. + /// platforms (at least Windows) do not have such permissions, but Git still represents them. /// /// This currently only checks files name with an `.sh` suffix, and only operates on the /// current repository. Its main use is checking that fixture scripts are have correct modes.