Bladeren bron

Merge pull request #37721 from SeungUkLee/master

fixed typo (becuase -> because)
Doug Davis 6 jaren geleden
bovenliggende
commit
fe3bc75cc4
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      daemon/logger/loggerutils/logfile.go

+ 2 - 2
daemon/logger/loggerutils/logfile.go

@@ -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 {