From 04e2f5ed207e4a8399c405911e9433e632bede63 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Tue, 29 Aug 2023 14:38:12 +0900 Subject: [PATCH] git: fix typo in GitFetchError message --- lib/src/git.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/git.rs b/lib/src/git.rs index 0ef3916d0..e740f35be 100644 --- a/lib/src/git.rs +++ b/lib/src/git.rs @@ -689,7 +689,7 @@ pub enum GitFetchError { NoSuchRemote(String), #[error("Invalid glob provided. Globs may not contain the characters `:` or `^`.")] InvalidGlob, - #[error("Failec to import Git refs: {0}")] + #[error("Failed to import Git refs: {0}")] GitImportError(#[from] GitImportError), // TODO: I'm sure there are other errors possible, such as transport-level errors. #[error("Unexpected git error when fetching: {0}")]