git: fix typo in GitFetchError message

This commit is contained in:
Yuya Nishihara 2023-08-29 14:38:12 +09:00
parent 35a596ff66
commit 04e2f5ed20

View file

@ -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}")]