summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-11-08 00:47:37 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-11-08 00:47:37 -0500
commit0273c5b795dc0e72b6fa4f030d4ba6aab1135bea (patch)
tree7027a7be206073814b44e2400bf7dd465358ec06
parent0cf23b50244e23a85277350a5393d116f2c4c06f (diff)
fix typo
-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.