summaryrefslogtreecommitdiffstats
path: root/vendor/gix-config/src/parse
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-config/src/parse')
-rw-r--r--vendor/gix-config/src/parse/events.rs2
-rw-r--r--vendor/gix-config/src/parse/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gix-config/src/parse/events.rs b/vendor/gix-config/src/parse/events.rs
index 62f621b52..24bb45253 100644
--- a/vendor/gix-config/src/parse/events.rs
+++ b/vendor/gix-config/src/parse/events.rs
@@ -51,7 +51,7 @@ pub type FrontMatterEvents<'a> = SmallVec<[Event<'a>; 8]>;
/// - Only equal signs (optionally padded by spaces) are valid name/value
/// delimiters.
///
-/// Note that that things such as case-sensitivity or duplicate sections are
+/// Note that things such as case-sensitivity or duplicate sections are
/// _not_ handled. This parser is a low level _syntactic_ interpreter
/// and higher level wrappers around this parser, which may
/// or may not be zero-copy, should handle _semantic_ values. This also means
diff --git a/vendor/gix-config/src/parse/mod.rs b/vendor/gix-config/src/parse/mod.rs
index 50363873c..e943a22b4 100644
--- a/vendor/gix-config/src/parse/mod.rs
+++ b/vendor/gix-config/src/parse/mod.rs
@@ -57,7 +57,7 @@ pub enum Event<'a> {
/// A completed value. This may be any single-line string, including the empty string
/// if an implicit boolean value is used.
/// Note that these values may contain spaces and any special character. This value is
- /// also unprocessed, so it it may contain double quotes that should be
+ /// also unprocessed, so it may contain double quotes that should be
/// [normalized][crate::value::normalize()] before interpretation.
Value(Cow<'a, BStr>),
/// Represents any token used to signify a newline character. On Unix