summary refs log tree commit diff stats
path: root/tinyc
diff options
context:
space:
mode:
authorFederico Ceratto <federico.ceratto@gmail.com>2015-02-15 16:06:06 +0000
committerFederico Ceratto <federico.ceratto@gmail.com>2015-02-15 16:06:06 +0000
commitc95f6f117a665bc6d3d64ae8703459759973f63f (patch)
tree21df380c373960c77b8bb19eb415578f1556c953 /tinyc
parentd8c4c576372f63219b90203a71855c93a10ddda3 (diff)
downloadNim-c95f6f117a665bc6d3d64ae8703459759973f63f.tar.gz
Fix typos
Diffstat (limited to 'tinyc')
-rw-r--r--tinyc/tccgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyc/tccgen.c b/tinyc/tccgen.c
index 3135e7b37..2eacff2c7 100644
--- a/tinyc/tccgen.c
+++ b/tinyc/tccgen.c
@@ -1203,7 +1203,7 @@ static inline int is_integer_btype(int bt)
             bt == VT_INT || bt == VT_LLONG);
 }
 
-/* check types for comparison or substraction of pointers */
+/* check types for comparison or subtraction of pointers */
 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
 {
     CType *type1, *type2, tmp_type1, tmp_type2;