fix spelling typo

This commit is contained in:
0xdf0xdf
2020-05-10 13:54:17 -04:00
committed by GitHub
parent 9c63e5d6c5
commit 333189df9c

View File

@@ -16,5 +16,5 @@ type Config struct {
}
func (c Config) String() string {
return fmt.Sprintf("Printing events (colored=%t): processes=%t | file-system-events=%t ||| Scannning for processes every %v and on inotify events ||| Watching directories: %+v (recursive) | %+v (non-recursive)", c.Colored, c.LogPS, c.LogFS, c.TriggerEvery, c.RDirs, c.Dirs)
return fmt.Sprintf("Printing events (colored=%t): processes=%t | file-system-events=%t ||| Scanning for processes every %v and on inotify events ||| Watching directories: %+v (recursive) | %+v (non-recursive)", c.Colored, c.LogPS, c.LogFS, c.TriggerEvery, c.RDirs, c.Dirs)
}