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

chore: fix some typos in comment #56

Open
wants to merge 1 commit 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
2 changes: 1 addition & 1 deletion docs/pages/build/cli/add-bridge.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ Enter the address and hit enter.
Output if it passes all the checks:

```bash [terminal]
✔ 🌉 Succesfully added bridge contract to AppInbox
✔ 🌉 Successfully added bridge contract to AppInbox
```
2 changes: 1 addition & 1 deletion docs/pages/build/cli/verify.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ EXAMPLES
$ npx @stackr/cli@latest verify
```

The AppInbox addresss will be read from the `deployment.json` file otherwise error would be thrown.
The AppInbox address will be read from the `deployment.json` file otherwise error would be thrown.

Output if it passes all the checks:
```bash [terminal]
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/build/framework/state-machine/genesis-state.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Genesis State [The state at which the state machine starts]

The genesis state is the initial state of the state machine. This state is serialized and stored as the begininng of the rollup inside the `AppInbox` contract.
The genesis state is the initial state of the state machine. This state is serialized and stored as the beginning of the rollup inside the `AppInbox` contract.

The genesis state is stored in a `genesis-state.json` file in the root of the project. This file is used to initialize the state machine with the initial state. The CLI also uses this file to register the rollup with the `AppInbox` contract.

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/build/guides/tutorials/counter.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export { stackrConfig };

## Define the Rollup

Once we are done with the state machine, we can define the rollup using the `MicroRollup` class from the SDK which includes all the neccessary components to run the state machine.
Once we are done with the state machine, we can define the rollup using the `MicroRollup` class from the SDK which includes all the necessary components to run the state machine.

The rollup takes 2 parameters:

Expand Down