summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Martini <seb@dbzteam.org>2010-05-27 17:50:31 +0200
committerSebastien Martini <seb@dbzteam.org>2010-05-27 17:50:31 +0200
commit6842f01438a233aa45d6037aa2ff9fe07f9fe89f (patch)
tree1ee08ee831b78f5378ad5fa2c6ef53703af64e39
parent134f1628ed438995b0367c76ea749d9d11067eb6 (diff)
downloadpyinotify-6842f01438a233aa45d6037aa2ff9fe07f9fe89f.tar.gz
Fixed typo.
-rw-r--r--python2/examples/coalesce.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python2/examples/coalesce.py b/python2/examples/coalesce.py
index f3802c1..e54feb6 100644
--- a/python2/examples/coalesce.py
+++ b/python2/examples/coalesce.py
@@ -26,7 +26,7 @@ import pyinotify
wm = pyinotify.WatchManager()
# Put an arbitrary large value (10 seconds) to aggregate together a larger
# chunk of events. For instance if you repeat several times a given action
-# on the same file its events will be coalesced into a signe event and only
+# on the same file its events will be coalesced into a single event and only
# one event of this type will be reported (for this period).
notifier = pyinotify.Notifier(wm, read_freq=10)
# Enable coalescing of events.