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

fix: typos in documentation files #403

Open
wants to merge 4 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
2 changes: 1 addition & 1 deletion .github/workflows/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A clear and concise description of what the bug is.
if applicable add a *minimum reproducible example*

```
// Be exhustive
// Be exhaustive
//
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

The project is organized as follows:

- `contracts`: Contains a number of example smart contracts that can be ran against the `piecrust` virtual machine.
- `contracts`: Contains a number of example smart contracts that can be run against the `piecrust` virtual machine.
- `piecrust`: Contains the source code and README for the WASM virtual machine.
- `piecrust-uplink`: Contains the source code and README for the smart contract development kit.

Expand Down
2 changes: 1 addition & 1 deletion crumbles/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Crumbles is a Rust library designed for creating and managing copy-on-write memo

## Usage

The core fuctionality of Crumbles is provided by the `Mmap` struct. This struct offers methods to manage memory regions, create snapshots and revert/apply changes.
The core functionality of Crumbles is provided by the `Mmap` struct. This struct offers methods to manage memory regions, create snapshots and revert/apply changes.

Add `crumbles` as a dependency to your contract project:
```sh
Expand Down
2 changes: 1 addition & 1 deletion docs/on-disk-datastore.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and, the directory will contain the following files:

### Another Commit

When can then start a new session using `root_1` as a base commit, and make some
We can then start a new session using `root_1` as a base commit, and make some
modifications to the state by performing transactions. Let's say that we made
some modifications to `contract_1`'s first memory page, and deploy a new
contract with identifier `contract_3`. We can then commit to those changes
Expand Down