diff --git a/exercises/arrays/arrays1.cairo b/exercises/arrays/arrays1.cairo index d2ff9cc0f..a8b689936 100644 --- a/exercises/arrays/arrays1.cairo +++ b/exercises/arrays/arrays1.cairo @@ -1,6 +1,6 @@ // arrays1.cairo // Your task is to create an `Array` which holds three elements of type `felt252`. -// The first element shoud be 0. +// The first element should be 0. // Make me compile and pass the test! // Execute `starklings hint arrays1` or use the `hint` watch subcommand for a hint. diff --git a/exercises/structs/README.md b/exercises/structs/README.md index 55017de7f..72807bd8e 100644 --- a/exercises/structs/README.md +++ b/exercises/structs/README.md @@ -12,6 +12,6 @@ struct Rectangle { ## Further information -- [Defining and instanciating Structs](https://book.cairo-lang.org/ch05-01-defining-and-instantiating-structs.html) +- [Defining and instantiating Structs](https://book.cairo-lang.org/ch05-01-defining-and-instantiating-structs.html) - [An example program using structs](https://book.cairo-lang.org/ch05-02-an-example-program-using-structs.html) - [The Method syntax](https://book.cairo-lang.org/ch05-03-method-syntax.html)