Skip to content

Commit 0bc7019

Browse files
committed
fix typo
1 parent 98344d9 commit 0bc7019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tailer/glob/glob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func Parse(pattern string) (Glob, error) {
3333
}
3434
absglob, err = filepath.Abs(pattern)
3535
if err != nil {
36-
return "", fmt.Errorf("%q: failed to finnd absolute path for glob pattern: %v", pattern, err)
36+
return "", fmt.Errorf("%q: failed to find absolute path for glob pattern: %v", pattern, err)
3737
}
3838
result = Glob(absglob)
3939
if containsWildcards(result.Dir()) {

0 commit comments

Comments
 (0)