Fix comments in WASM code

This commit is contained in:
Raymond Hill 2019-10-26 15:34:40 -04:00
parent fb457a3dff
commit 0373410635
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@
i32.const 1 i32.const 1
i32.add i32.add
tee_local $needleLeft tee_local $needleLeft
;; if ( needleLeft === needleRight ) { break; } ;; if ( needleLeft === needleRight ) { return 1; }
get_local $needleRight get_local $needleRight
i32.eq i32.eq
if if
@ -116,7 +116,7 @@
br $compare br $compare
end end end end
;; } ;; }
;; return true; ;; return 0;
i32.const 0 i32.const 0
) )