From 0dd1383ed6b957c9a7db50f1776ed28d945a855a Mon Sep 17 00:00:00 2001 From: Sebastian Martinez Date: Thu, 30 May 2024 23:14:36 +0200 Subject: [PATCH] surf: Fix comment typo --- radicle-surf/src/glob.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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!("*")) }