docs; nitpicks

This commit is contained in:
underscorediscovery
2020-06-05 20:11:32 -07:00
parent cd01246997
commit 8341f61cdb
3 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ That includes the built in language features, the standard library and the VM it
In order to access files, networks and other IO, you'd need to make a tool _using_ the language VM.
That's what the CLI project is! It is not bundled as part of the wren project,
instead it is it's own project as a standalone tool you can run.
It exposes it's own standard library and modules that may be of interest
instead it is its own project as a standalone tool you can run.
It exposes its own standard library and modules that may be of interest
if looking for a general purpose single binary scriptable tool.
Wren CLI is a work in progress, and contributions are welcome to make it more useful over time.

View File

@ -1,6 +1,6 @@
^title CLI Modules
The Wren CLI executable extends the built in language modules with it's own,
The Wren CLI executable extends the built in language modules with its own,
which offer access to IO and other facilities for scripting.
The CLI modules are deeply tied to [libuv][], each other, and other internals