From 877935a3e4085210e34cf31d023550f2082ea8d1 Mon Sep 17 00:00:00 2001 From: Vlad Losev Date: Fri, 2 Mar 2018 17:43:26 -0800 Subject: [PATCH] Fixes a typo. --- inotify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inotify.go b/inotify.go index 5f13a2b3..3afea4d9 100644 --- a/inotify.go +++ b/inotify.go @@ -308,7 +308,7 @@ func (e *Event) ignoreLinux(mask uint32) bool { // *Note*: this was put in place because it was seen that a MODIFY // event was sent after the DELETE. This ignores that MODIFY and // assumes a DELETE will come or has come if the file doesn't exist. - // A CHMOD event (triggeded by IN_MODIFY) can arrive when an open file is + // A CHMOD event (triggered by IN_MODIFY) can arrive when an open file is // deleted. In that case the DELETE event is deferred until all open // handles for the file are closed. See // https://github.com/fsnotify/fsnotify/issues/194 for more information.