diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-02-01 11:22:27 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-02-04 23:14:46 +0700 |
commit | 7c2b6a9e293acfad2f806c0f28459ac14b4a1d5d (patch) | |
tree | 16e19be30f58e1402e5aef1aabb2adb1f0c40383 /src/parseTools.js | |
parent | 6d3d82bb13b8a7377e1bc8e1a65a80a2e013af4a (diff) |
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 f5e2f33f..e226a4f8 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] == '%'; } |