Skip to content

Commit c19cc87

Browse files
committed
Fix error message
1 parent 893d420 commit c19cc87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ObjectiveGit/GTEnumerator.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ - (BOOL)hideGlob:(NSString *)refGlob error:(NSError **)error {
147147

148148
int gitError = git_revwalk_hide_glob(self.walk, refGlob.UTF8String);
149149
if (gitError != GIT_OK) {
150-
if (error != NULL) *error = [NSError git_errorFor:gitError description:@"Failed to push glob %@ onto rev walker.", refGlob];
150+
if (error != NULL) *error = [NSError git_errorFor:gitError description:@"Failed to hide glob %@ in rev walker.", refGlob];
151151
return NO;
152152
}
153153

0 commit comments

Comments
 (0)