]> go.fuhry.dev Git - fsnotify.git/commitdiff
Fix lint issue with error doc string
authorBrian Goff <cpuguy83@gmail.com>
Fri, 8 Mar 2019 03:54:56 +0000 (19:54 -0800)
committerNathan Youngman <4566+nathany@users.noreply.github.com>
Fri, 8 Mar 2019 17:04:29 +0000 (10:04 -0700)
fsnotify.go

index 190bf0de575629521ae129b755007ca5cc874845..89cab046d124bbfc86ad58a89b06dcbfb22f4a9a 100644 (file)
@@ -63,4 +63,6 @@ func (e Event) String() string {
 }
 
 // Common errors that can be reported by a watcher
-var ErrEventOverflow = errors.New("fsnotify queue overflow")
+var (
+       ErrEventOverflow = errors.New("fsnotify queue overflow")
+)