fixed typo (becuase -> because)
Signed-off-by: SeungUkLee <lsy931106@gmail.com>
This commit is contained in:
parent
41481abdc6
commit
a79f8b48d4
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue