summary refs log tree commit diff stats
path: root/tinyc/tccgen.c
diff options
context:
space:
mode:
authorSimon Hafner <hafnersimon@gmail.com>2013-12-22 21:55:24 -0800
committerSimon Hafner <hafnersimon@gmail.com>2013-12-22 21:55:24 -0800
commitc3b3339e779dfe19ed1891295a763aea47981131 (patch)
treea2340bec81097aa0451701ad65d387dc7d12bad0 /tinyc/tccgen.c
parent52a8226edda05f2d3baad791639a1c2fe7f103cc (diff)
parent033938a53a62399d45c5fd6fe9c4e798431c964f (diff)
downloadNim-c3b3339e779dfe19ed1891295a763aea47981131.tar.gz
Merge pull request #774 from brihat/master
Correct the spelling of the word 'implicitly'
Diffstat (limited to 'tinyc/tccgen.c')
-rw-r--r--tinyc/tccgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyc/tccgen.c b/tinyc/tccgen.c
index 942c503c1..3135e7b37 100644
--- a/tinyc/tccgen.c
+++ b/tinyc/tccgen.c
@@ -1931,7 +1931,7 @@ static void gen_assign_cast(CType *dt)
             goto type_ok;
         }
         type1 = pointed_type(dt);
-        /* a function is implicitely a function pointer */
+        /* a function is implicitly a function pointer */
         if (sbt == VT_FUNC) {
             if ((type1->t & VT_BTYPE) != VT_VOID &&
                 !is_compatible_types(pointed_type(dt), st))