@@ -10,15 +10,15 @@ pub enum Error {
10
10
InvalidInput { directory : PathBuf } ,
11
11
#[ error( "Failed to access a directory, or path is not a directory: '{}'" , . path. display( ) ) ]
12
12
InaccessibleDirectory { path : PathBuf } ,
13
- #[ error( "Could find a git repository in '{}' or in any of its parents" , . path. display( ) ) ]
13
+ #[ error( "Could not find a git repository in '{}' or in any of its parents" , . path. display( ) ) ]
14
14
NoGitRepository { path : PathBuf } ,
15
- #[ error( "Could find a git repository in '{}' or in any of its parents within ceiling height of {}" , . path. display( ) , . ceiling_height) ]
15
+ #[ error( "Could not find a git repository in '{}' or in any of its parents within ceiling height of {}" , . path. display( ) , . ceiling_height) ]
16
16
NoGitRepositoryWithinCeiling { path : PathBuf , ceiling_height : usize } ,
17
- #[ error( "Could find a git repository in '{}' or in any of its parents within device limits below '{}'" , . path. display( ) , . limit. display( ) ) ]
17
+ #[ error( "Could not find a git repository in '{}' or in any of its parents within device limits below '{}'" , . path. display( ) , . limit. display( ) ) ]
18
18
NoGitRepositoryWithinFs { path : PathBuf , limit : PathBuf } ,
19
19
#[ error( "None of the passed ceiling directories prefixed the git-dir candidate, making them ineffective." ) ]
20
20
NoMatchingCeilingDir ,
21
- #[ error( "Could find a trusted git repository in '{}' or in any of its parents, candidate at '{}' discarded" , . path. display( ) , . candidate. display( ) ) ]
21
+ #[ error( "Could not find a trusted git repository in '{}' or in any of its parents, candidate at '{}' discarded" , . path. display( ) , . candidate. display( ) ) ]
22
22
NoTrustedGitRepository {
23
23
path : PathBuf ,
24
24
candidate : PathBuf ,
0 commit comments