Skip to content

Commit

Permalink
chore: Proofreading the docs (#163)
Browse files Browse the repository at this point in the history
* summary

* stuct

* env setup

* contract testing
  • Loading branch information
Ursulafe committed Jan 17, 2024
1 parent 6eb4d4b commit 1021875
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Summary

# Getting Started

<!-- - [Local environnement setup](./ch00/env_setup.md) -->
<!-- - [Local environment setup](./ch00/env_setup.md) -->
- [Basics of a Starknet contract](./ch00/basics/introduction.md)
- [Storage](./ch00/basics/storage.md)
- [Constructor](./ch00/basics/constructor.md)
Expand Down
2 changes: 1 addition & 1 deletion src/ch00/env_setup.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Local environnement setup
# Local environment setup

The current version of this book use `{{#include ../../.tool-versions}}`

Expand Down
2 changes: 1 addition & 1 deletion src/ch00/testing/contract-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ You may also need the `info` module from the corelib, which allows you to access


You can found the full list of functions in the [Starknet Corelib repo](https://github.com/starkware-libs/cairo/tree/main/corelib/src/starknet).
You can also find a detailled explaination of testing in cairo in the [Cairo book - Chapter 9](https://book.cairo-lang.org/ch09-01-how-to-write-tests.html).
You can also find a detailed explanation of testing in cairo in the [Cairo book - Chapter 9](https://book.cairo-lang.org/ch09-01-how-to-write-tests.html).

## Starknet Foundry

Expand Down
2 changes: 1 addition & 1 deletion src/ch02/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ An ordered sequence of values that can be used in Starknet storage:

```rust
#[storage]
stuct Storage {
struct Storage {
amounts: List<u128>
}
```
Expand Down

0 comments on commit 1021875

Please sign in to comment.