From 935359735fa9ebe48433ca67a6ba4a24a93017a0 Mon Sep 17 00:00:00 2001 From: masterex1000 Date: Sun, 8 Dec 2024 05:59:32 -0700 Subject: [PATCH] fix grammer slightly --- Working-for-Web-(HTML5).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-for-Web-(HTML5).md b/Working-for-Web-(HTML5).md index 8ef7ca0..3116f29 100644 --- a/Working-for-Web-(HTML5).md +++ b/Working-for-Web-(HTML5).md @@ -1,4 +1,4 @@ -raylib C code can be compiled to [WebAssembly](https://en.wikipedia.org/wiki/WebAssembly) to run on Web. Compilation process is very similar to the one used for desktop platforms with `gcc` compiler but it requires a different toolchain: [emscripten SDK](https://emscripten.org/). +raylib C code can be compiled to [WebAssembly](https://en.wikipedia.org/wiki/WebAssembly) to run on Web. The compilation process is very similar to the one used for desktop platforms with `gcc` compiler but it requires a different toolchain: [emscripten SDK](https://emscripten.org/). `emscripten` provides a set of tools to compile C code to WebAssembly, the main tool provided is the `emcc` compiler. `emcc` is actually a direct replacement for `gcc`, so, anyone with experience compiling code directly in the command-line should not have much trouble to use `emcc`.