From 6793588d8ab8e2cd45aa2151b0b0bd7da5dd2617 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 19 Dec 2019 20:25:02 +1100 Subject: [PATCH] Fix simple typo: seperate -> separate Closes #604 --- src/watchdog/observers/inotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/watchdog/observers/inotify.py b/src/watchdog/observers/inotify.py index 6e5605241..68ffa66ea 100644 --- a/src/watchdog/observers/inotify.py +++ b/src/watchdog/observers/inotify.py @@ -125,7 +125,7 @@ def on_thread_stop(self): self._inotify.close() def queue_events(self, timeout, full_events=False): - # If "full_events" is true, then the method will report unmatched move events as seperate events + # If "full_events" is true, then the method will report unmatched move events as separate events # This behavior is by default only called by a InotifyFullEmitter with self._lock: event = self._inotify.read_event()