summaryrefslogtreecommitdiffstats
path: root/crates/core
diff options
context:
space:
mode:
Diffstat (limited to 'crates/core')
-rw-r--r--crates/core/flags/defs.rs2
-rw-r--r--crates/core/flags/parse.rs2
-rw-r--r--crates/core/messages.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/crates/core/flags/defs.rs b/crates/core/flags/defs.rs
index b5114e28..be85b900 100644
--- a/crates/core/flags/defs.rs
+++ b/crates/core/flags/defs.rs
@@ -7261,7 +7261,7 @@ impl Flag for Vimgrep {
Category::Output
}
fn doc_short(&self) -> &'static str {
- r"Print results im a vim compatible format."
+ r"Print results in a vim compatible format."
}
fn doc_long(&self) -> &'static str {
r"
diff --git a/crates/core/flags/parse.rs b/crates/core/flags/parse.rs
index f1f2dcc1..37a74b6f 100644
--- a/crates/core/flags/parse.rs
+++ b/crates/core/flags/parse.rs
@@ -323,7 +323,7 @@ enum FlagLookup<'a> {
UnrecognizedLong(String),
}
-/// The info about a flag associated with a flag's ID in the the flag map.
+/// The info about a flag associated with a flag's ID in the flag map.
#[derive(Debug)]
struct FlagInfo {
/// The flag object and its associated metadata.
diff --git a/crates/core/messages.rs b/crates/core/messages.rs
index 2f723509..ba8b9adc 100644
--- a/crates/core/messages.rs
+++ b/crates/core/messages.rs
@@ -28,7 +28,7 @@ static ERRORED: AtomicBool = AtomicBool::new(false);
///
/// This locks stdout, not stderr, even though this prints to stderr. This
/// avoids the appearance of interleaving output when stdout and stderr both
-/// correspond to a tty.)
+/// correspond to a tty.
#[macro_export]
macro_rules! eprintln_locked {
($($tt:tt)*) => {{