Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typos #415

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The current implementation of aos is using the ao wasm module and building with

## For Developers

The aos console is a command-line application that provides a easy to use DX experience to create Processes (aka Smart Contracts) on the ao Computer.
The aos console is a command-line application that provides an easy to use DX experience to create Processes (aka Smart Contracts) on the ao Computer.

### Setup

Expand Down Expand Up @@ -79,10 +79,10 @@ When running the console, you can type `dot` commands to instruct the console to

| Command | Description |
| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------- |
| `.editor` | This command opens a simple cli editor that you can type on multiple lines, and then you can type `.done` or `.cancel` to exist editor mode. |
| `.editor` | This command opens a simple cli editor that you can type on multiple lines, and then you can type `.done` or `.cancel` to exit editor mode. |
| `.load` | This command allows you to load a lua source file from your local directory |
| `.load-blueprint [name]` | This command will grab a lua file from the blueprints directory and load it into your process. |
| `.exit` | This command will exit you console, but you can also do `Ctrl-C` or `Ctrl-D` |
| `.exit` | This command will exit your console, but you can also do `Ctrl-C` or `Ctrl-D` |

### Boot Loading

Expand Down Expand Up @@ -135,7 +135,7 @@ ao build

### Develop using os loader

Making changes and debugging can be a challege with aos modules.
Making changes and debugging can be a challenge with aos modules.

```
node ../src/index.js
Expand Down
4 changes: 2 additions & 2 deletions process/docs/modules/ao.html
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ <h3>Returns:</h3>
<strong>addAssignable (nameOrMatchSpec, matchSpec)</strong>
</dt>
<dd>
Add the MatchSpec to the ao.assignables table. A optional name may be provided.
Add the MatchSpec to the ao.assignables table. An optional name may be provided.
This implies that ao.assignables may have both number and string indices.
Added in the assignment module.

Expand Down Expand Up @@ -509,7 +509,7 @@ <h3>See also:</h3>
</dt>
<dd>
Check whether the msg matches any assignable MatchSpec.
If not assignables are configured, the msg is deemed not assignable, by default.
If no assignables are configured, the msg is deemed not assignable, by default.
Added in the assignment module.


Expand Down