diff --git a/radicle-surf/src/glob.rs b/radicle-surf/src/glob.rs index f3a1302..eef779c 100644 --- a/radicle-surf/src/glob.rs +++ b/radicle-surf/src/glob.rs @@ -66,7 +66,7 @@ impl Glob { } impl Glob { - /// Creates the `Glob` that mathces all `refs/namespaces`. + /// Creates the `Glob` that matches all `refs/namespaces`. pub fn all_namespaces() -> Self { Self::namespaces(refspec::pattern!("*")) } @@ -165,7 +165,7 @@ impl Extend for Glob { } impl Glob { - /// Creates the `Glob` that mathces all `refs/heads`. + /// Creates the `Glob` that matches all `refs/heads`. pub fn all_heads() -> Self { Self::heads(refspec::pattern!("*")) } @@ -239,7 +239,7 @@ impl From> for Glob { } impl Glob { - /// Creates the `Glob` that mathces all `refs/remotes`. + /// Creates the `Glob` that matches all `refs/remotes`. pub fn all_remotes() -> Self { Self::remotes(refspec::pattern!("*")) }