about summary refs log tree commit homepage
path: root/path_parser.rl
diff options
context:
space:
mode:
Diffstat (limited to 'path_parser.rl')
-rw-r--r--path_parser.rl2
1 files changed, 1 insertions, 1 deletions
diff --git a/path_parser.rl b/path_parser.rl
index fc77c98..e403607 100644
--- a/path_parser.rl
+++ b/path_parser.rl
@@ -11,7 +11,7 @@
 
         devid = "dev"
                 (digit+) $ {
-                        /* no overflow checking here, no need */
+                        /* no overflow checking here, we do it in mog_dev_new */
                         *mog_devid *= 10;
                         *mog_devid += fc - '0';
                 }