This commit is contained in:
Edward Shen 2021-02-23 20:22:15 -05:00
parent ea0f76d528
commit 6c2385d394
Signed by: edward
GPG key ID: 19182661E818369F

View file

@ -23,7 +23,7 @@ use std::fmt::Display;
use std::iter::FusedIterator;
/// Syntactic events that occurs in the config. Despite all these variants
/// holding a [`Cow`] instead over a [`&str`], the parser will only emit
/// holding a [`Cow`] instead over a simple reference, the parser will only emit
/// borrowed `Cow` variants.
///
/// The `Cow` smart pointer is used here for ease of inserting events in a
@ -31,7 +31,6 @@ use std::iter::FusedIterator;
/// struct when adding values.
///
/// [`Cow`]: std::borrow::Cow
/// [`&str`]: std::str
/// [`GitConfig`]: crate::config::GitConfig
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
pub enum Event<'a> {