diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-04 18:36:34 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-04 18:36:34 -0800 |
commit | 85e298313f68f41e63634166854a81ae1b250c62 (patch) | |
tree | 6d856a960e8016b92fab8c6de092d92cfce25a93 /src/parseTools.js | |
parent | 5a8d9d2833451cba3048e2b8ec03642edf7f754b (diff) | |
parent | 7c2b6a9e293acfad2f806c0f28459ac14b4a1d5d (diff) |
Merge pull request #832 from waywardmonkeys/typo-fixes
Fix typos.
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index 85e91f68..e081d0de 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -111,7 +111,7 @@ function isStructPointerType(type) { // |%5()| as a function call (like |i32 (i8*)| etc.). So // we must check later on, in call(), where we have more // context, to differentiate such cases. - // A similar thing happns in isStructType() + // A similar thing happens in isStructType() return !Runtime.isNumberType(type) && type[0] == '%'; } |