Skip to content

Commit

Permalink
Merge pull request #104 from tudorpintea999/tudorpintea999-fix-typos
Browse files Browse the repository at this point in the history
fix: minor typos in the documentation
  • Loading branch information
ponderingdemocritus authored Nov 19, 2023
2 parents 206e797 + 4c7c15c commit 7ce7a89
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions 0.2.0/src/cairo/hello-dojo.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@ Here we use the `set!` [command](./commands.md) to set the `Moves` and `Position
We covered a lot here in a short time. Let's recap:

- Explained the anatomy of a Dojo project
- Explained the importace of the `#[derive(Component)]` and `#[system]` attribute
- Explained the importance of the `#[derive(Component)]` and `#[system]` attribute
- Explained the `execute` function
- Explained the `Context` struct
- Touched on the `get!` and `set!` commands


### Run it locally!

Now that we have some theory out of the way, lets build the Dojo project!
Now that we have some theory out of the way, let's build the Dojo project!

```bash
sozo build
Expand All @@ -162,7 +162,7 @@ Now lets deploy it to [Katana](../toolchain/katana/overview.md)! First we need t
katana --disable-fee
```

Success! [Katana](../toolchain/katana/overview.md) should now be running locally on your machine. Now lets deploy!
Success! [Katana](../toolchain/katana/overview.md) should now be running locally on your machine. Now let's deploy!

```bash
sozo migrate --name test
Expand Down Expand Up @@ -237,4 +237,4 @@ We've covered quite a bit! Here's a recap:

### Next Steps

This overview provides a rapid end-to-end glimpse into Dojo. However, the potential of these worlds is vast! Designed to manage hundreds of systems and components, Dojo is equipped for expansive creativity. So, what will you craft next?
This overview provides a rapid end-to-end glimpse into Dojo. However, the potential of these worlds is vast! Designed to manage hundreds of systems and components, Dojo is equipped for expansive creativity. So, what will you craft next?
2 changes: 1 addition & 1 deletion 0.2.0/src/cairo/modules.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Dojo Modules

With standardization of Systems and Components we can create a module architecture for Dojo. This allows us to create reusable modules that can be used in any Dojo world.
With the standardization of Systems and Components we can create a module architecture for Dojo. This allows us to create reusable modules that can be used in any Dojo world.

### Module Architecture

Expand Down
4 changes: 2 additions & 2 deletions 0.2.0/src/cairo/systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ Systems must be given permission to write to components. By default they have no
sozo auth writer Moves Spawn
```

Here we have authorised the `Spawn` system to write to the `Moves` component.
Here we have authorized the `Spawn` system to write to the `Moves` component.

Read more in the [sozo](../toolchain/sozo/overview.md) docs.
Read more in the [sozo](../toolchain/sozo/overview.md) docs.
2 changes: 1 addition & 1 deletion 0.2.0/src/cairo/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mod tests {
```

In this test we are testing the `is_zero` and `is_equal` functions of the `Position` component. It is good practise to test all functions of your components.
In this test we are testing the `is_zero` and `is_equal` functions of the `Position` component. It is good practice to test all functions of your components.


### Writing Integration Tests
Expand Down
2 changes: 1 addition & 1 deletion 0.2.0/src/client/npm/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This library abstracts away the world interface and provides a set of helper fun
- World explorers
- World deployers
- Games
- Anaylitics
- Analytics

### Getting Started

Expand Down
4 changes: 2 additions & 2 deletions 0.2.0/src/deployment/locally.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Deploying Locally

Dojo is engineered for rapid development, boasting a lightning-fast local development environment named [Katana](./toolchain/katana/overview.md). Katana serves as an on-device Starknet blockchain, allowing you to rigorously test your smart contracts before transitioning them to the a remote testnet.
Dojo is engineered for rapid development, boasting a lightning-fast local development environment named [Katana](./toolchain/katana/overview.md). Katana serves as an on-device Starknet blockchain, allowing you to rigorously test your smart contracts before transitioning them to the remote testnet.

### Katana Deployments

Expand Down Expand Up @@ -28,4 +28,4 @@ Note - this will only work if you have compiled your contracts. If you have not,

```bash
sozo build
```
```
2 changes: 1 addition & 1 deletion 0.2.0/src/deployment/remote.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ __todo__: add instructions for deploying to remote katana

### Madara

[Madara](https://github.com/keep-starknet-strange/madara) is a blazinly fast Starknet sequencer. Built on the robust Substrate framework and fast, thanks to Rust 🦀, Madara delivers unmatched performance and scalability to power your Starknet-based Validity Rollup chain.
[Madara](https://github.com/keep-starknet-strange/madara) is a blazingly fast Starknet sequencer. Built on the robust Substrate framework and fast, thanks to Rust 🦀, Madara delivers unmatched performance and scalability to power your Starknet-based Validity Rollup chain.

A public Madara testnet is available for deployment:

Expand Down

0 comments on commit 7ce7a89

Please sign in to comment.