From 519dc8722c5be6fcee07e836a8c94c16441dfa21 Mon Sep 17 00:00:00 2001 From: lido333 Date: Mon, 23 Sep 2024 20:03:00 +0800 Subject: [PATCH] chore: fix tiny typos (#213) * Update arrays1.cairo * Update README.md --- exercises/arrays/arrays1.cairo | 2 +- exercises/structs/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)