0xflotus 6 лет назад
Родитель
Сommit
31de47bd92
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -86,7 +86,7 @@ emsdk install latest
 emsdk activate latest
 ```
 add ```./emsdk_env.sh``` into the path to ease future use, or source it everytime.
-The Emscripten website provides other installtion methods beyond Linux.
+The Emscripten website provides other installation methods beyond Linux.
 
 todo: user should copy the app-libs folder into project and include and build.
 
@@ -116,7 +116,7 @@ int main(int argc, char **argv)
   return 0;
 }
 ```
-Use the emcc commmand below to build the WASM C source code into the WASM binary.
+Use the emcc command below to build the WASM C source code into the WASM binary.
 ``` Bash
 emcc -g -O3 *.c -s WASM=1 -s SIDE_MODULE=1 -s ASSERTIONS=1 -s STACK_OVERFLOW_CHECK=2 \
                 -s TOTAL_MEMORY=65536 -s TOTAL_STACK=4096 -o test.wasm