fixed typo (becuase -> because)

Signed-off-by: SeungUkLee <lsy931106@gmail.com>
This commit is contained in:
SeungUkLee 2018-08-26 17:30:40 +09:00
parent 41481abdc6
commit a79f8b48d4

View file

@ -689,9 +689,9 @@ func watchFile(name string) (filenotify.FileWatcher, error) {
var fileWatcher filenotify.FileWatcher
if runtime.GOOS == "windows" {
// FileWatcher on Windows files is based on the syscall notifications which has an issue becuase of file caching.
// FileWatcher on Windows files is based on the syscall notifications which has an issue because of file caching.
// It is based on ReadDirectoryChangesW() which doesn't detect writes to the cache. It detects writes to disk only.
// Becuase of the OS lazy writing, we don't get notifications for file writes and thereby the watcher
// Because of the OS lazy writing, we don't get notifications for file writes and thereby the watcher
// doesn't work. Hence for Windows we will use poll based notifier.
fileWatcher = filenotify.NewPollingWatcher()
} else {