diff options
author | Nicolas Guillemot <nlguillemot@gmail.com> | 2014-06-02 01:04:35 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-04 13:02:49 -0700 |
commit | 29d1de1a8da6bf1c11590653436008336162d421 (patch) | |
tree | f316910fb3eb88b5d2f8bcc79e7601320c84d244 | |
parent | 7f482c48963acda7f683199b404ee0ec256c7912 (diff) |
removed parens from copy&paste error
-rw-r--r-- | system/include/emscripten/emscripten.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/include/emscripten/emscripten.h b/system/include/emscripten/emscripten.h index 8a08aabb..6e1c00d5 100644 --- a/system/include/emscripten/emscripten.h +++ b/system/include/emscripten/emscripten.h @@ -53,8 +53,8 @@ typedef double __attribute__((aligned(1))) emscripten_align1_double; * does a function call to reach it). It supports newlines, * * EM_ASM( - * window.alert('hai')); - * window.alert('bai')); + * window.alert('hai'); + * window.alert('bai'); * ) * * Notes: Double-quotes (") are not supported, but you can use |