aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-05 12:42:19 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-03-05 12:42:19 -0800
commit5f35f00af365bb890cf80fc7694a65e55645dbf5 (patch)
treebdf0a6d8d6cae28d5d6cfc2934887bde6d119b84
parentae342cbe2e592ddb35c533723912a3492acca3ba (diff)
parent7562bddcebda9fdc05ad4dff375126af647bebdd (diff)
Merge pull request #908 from waywardmonkeys/fix-typos
Fix typos.
-rw-r--r--system/include/emscripten/emscripten.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/include/emscripten/emscripten.h b/system/include/emscripten/emscripten.h
index 427dda0c..61634b0e 100644
--- a/system/include/emscripten/emscripten.h
+++ b/system/include/emscripten/emscripten.h
@@ -60,7 +60,7 @@ extern void emscripten_async_run_script(const char *script, int millis);
* that execution continues normally. Note that in both cases
* we do not run global destructors, atexit, etc., since we
* know the main loop will still be running, but if we do
- * not simulate an infinite loop then the stack will be unwinded.
+ * not simulate an infinite loop then the stack will be unwound.
* That means that if simulate_infinite_loop is false, and
* you created an object on the stack, it will be cleaned up
* before the main loop will be called the first time.
@@ -215,7 +215,7 @@ void emscripten_async_wget_data(const char* url, void *arg, void (*onload)(void*
* More feature-complete version of emscripten_async_wget. Note:
* this version is experimental.
*
- * The requestype is 'GET' or 'POST',
+ * The requesttype is 'GET' or 'POST',
* If is post request, param is the post parameter
* like key=value&key2=value2.
* The param 'arg' is a pointer will be pass to the callback