vendor/github.com/fsnotify/fsnotify/fsnotify.go
changeset 256 6d9efbef00a9
parent 242 2a9ec03fe5a1
child 260 445e01aede7e
equal deleted inserted replaced
255:4f153a23adab 256:6d9efbef00a9
    61 func (e Event) String() string {
    61 func (e Event) String() string {
    62 	return fmt.Sprintf("%q: %s", e.Name, e.Op.String())
    62 	return fmt.Sprintf("%q: %s", e.Name, e.Op.String())
    63 }
    63 }
    64 
    64 
    65 // Common errors that can be reported by a watcher
    65 // Common errors that can be reported by a watcher
    66 var ErrEventOverflow = errors.New("fsnotify queue overflow")
    66 var (
       
    67 	ErrEventOverflow = errors.New("fsnotify queue overflow")
       
    68 )