shithub: MicroHs

Download patch

ref: 687532ec7a7de83259e815a5b6056625ff31ce45
parent: 9bb5a048bba763551a2725f4be2e721e86452447
author: Lennart Augustsson <lennart@augustsson.net>
date: Sat Nov 23 07:38:35 EST 2024

Fix typos

--- a/README.md
+++ b/README.md
@@ -188,14 +188,14 @@
 
 ### Targets
 The configuration file `targets.conf` (in the installation directory) defines how to compile for
-different targets.  As distributed it contains thetargets `default` and `emscripten`.
+different targets.  As distributed it contains the targets `default` and `emscripten`.
 The first is the normal target to run on the host.
-The `emscripten` target uses `emcc` to generate JavaScript.
-If you have `emcc` and node installed you can do
+The `emscripten` target uses `emcc` to generate JavaScript/WASM.
+If you have `emcc` and `node` installed you can do
   ```
   mhs -temscripten Example -oout.js; node out.js
   ```
-to compile and run the JavaScript.  There generated JavaScript file has some regular JavaScript,
+to compile and run the JavaScript.  The generated JavaScript file has some regular JavaScript,
 and also the WASM code embedded as a blob.  Running via JavaScript/WASM is almost as fast as running natively.
 
 ### Environment variables
--