about summary refs log tree commit homepage
path: root/ext/kcar/c_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/kcar/c_util.h')
-rw-r--r--ext/kcar/c_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/kcar/c_util.h b/ext/kcar/c_util.h
index 624b4b3..632f632 100644
--- a/ext/kcar/c_util.h
+++ b/ext/kcar/c_util.h
@@ -1,6 +1,6 @@
 /*
  * Generic C functions and macros go here, there are no dependencies
- * on Unicorn internal structures or the Ruby C API in here.
+ * on kcar internal structures or the Ruby C API in here.
  */
 
 #ifndef UH_util_h
@@ -49,7 +49,7 @@ static int hexchar2int(int xdigit)
   if (xdigit >= 'a' && xdigit <= 'f')
     return xdigit - 'a' + 10;
 
-  /* Ragel already does runtime range checking for us in Unicorn: */
+  /* Ragel already does runtime range checking for us */
   assert(xdigit >= '0' && xdigit <= '9' && "invalid digit character");
 
   return xdigit - '0';