summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inotify/bits.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/inotify/bits.go b/inotify/bits.go
index 18d8566..fa44f9b 100644
--- a/inotify/bits.go
+++ b/inotify/bits.go
@@ -62,7 +62,7 @@ const (
IN_ISDIR Mask = (1 << 30) // Event occurred against dir.
IN_ONESHOT Mask = (1 << 31) // Only send event once.
- // Convenience macros */
+ // Convenience macros
IN_CLOSE Mask = (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE) // Close.
IN_MOVE Mask = (IN_MOVED_FROM | IN_MOVED_TO) // Moves.
IN_ALL_EVENTS Mask = 0x00000FFF // All events which a program can wait on.