Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
omahs authored Feb 9, 2025
1 parent e99b52c commit aec5c0e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ interacting with `ao` Processes.

This module will run in a browser or server environment.

- Read the result of an `ao` Message evaluation from a `ao` Compute Unit `cu`
- Read the result of an `ao` Message evaluation from an `ao` Compute Unit `cu`
- Send a Message targeting an `ao` Process to an `ao` Message Unit `mu`
- Spawn an `ao` Process, assigning it to an `ao` Scheduler Unit `su`

Expand Down Expand Up @@ -93,13 +93,13 @@ let results = await results({

Parameters

| Name | Description | Optional? |
| ------- | ----------------------------------------------------------------- | --------- |
| process | the process identifier | false |
| from | cursor starting point | true |
| to | cursor ending point | true |
| sort | list results in decending or ascending order, default will be ASC | true |
| limit | the number of results to return (default: 25) | true |
| Name | Description | Optional? |
| ------- | ------------------------------------------------------------------ | --------- |
| process | the process identifier | false |
| from | cursor starting point | true |
| to | cursor ending point | true |
| sort | list results in descending or ascending order, default will be ASC | true |
| limit | the number of results to return (default: 25) | true |

#### `message`

Expand Down Expand Up @@ -181,7 +181,7 @@ connect() == { spawn, message, result }

#### `monitor`

When using cron messages, ao users need a way to start injesting the messages,
When using cron messages, ao users need a way to start injecting the messages,
using this monitor method, ao users can initiate the subscription service for
cron messages.

Expand Down Expand Up @@ -229,7 +229,7 @@ const processId = await assign({
});
```

Create a Assignment for an `ao` process with an L1 transaction
Create an Assignment for an `ao` process with an L1 transaction

```js
import { assign } from "@permaweb/aoconnect";
Expand Down Expand Up @@ -355,7 +355,7 @@ unit test.

Because the contract wrapping is done by the business logic itself, it also
ensures the stubs we use in our unit tests accurately implement the contract
API. Thus our unit tests are simoultaneously contract tests.
API. Thus our unit tests are simultaneously contract tests.

`client` contains implementations, of the contracts in `dal.js`, for various
platforms. The unit tests for the implementations in `client` also import
Expand Down

0 comments on commit aec5c0e

Please sign in to comment.