Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 87d08a3

Browse files
authored
chore: fix some typos in comment (#987)
Signed-off-by: racequite <[email protected]>
1 parent bd08265 commit 87d08a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/nextra/pages/en/build/guides/build-e2e-dapp/1-create-smart-contract.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ At this point, we have successfully compiled our Move module. Yay!
202202
203203
We can also delete the `message_board.move` file, as we won't be using it. And remove the `message_board_addr` from the `Move.toml` file.
204204
205-
3. Let's make sure eveyrthing is still working by running the `npm run move:compile` command again.
205+
3. Let's make sure everything is still working by running the `npm run move:compile` command again.
206206
207207
We also have a new `move/build` directory (created by the compiler) that holds our compiled modules, build information and `sources` directory.
208208
@@ -597,7 +597,7 @@ use std::string; // add this
597597
598598
**Oh no! We got an error!**
599599
600-
It complains about an account mismatch. Apperantly we compiled the package with a different account we try to publish it.
600+
It complains about an account mismatch. Apparently we compiled the package with a different account we try to publish it.
601601
602602
Let's fix it.
603603

apps/nextra/pages/en/build/smart-contracts/maps.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Most maps above support the same set of functions (for actual signatures and res
6060
#### Destroying Maps
6161

6262
- `destroy_empty<K, V>(self: Self<K, V>)`: Destroys an empty map. (**not** supported by `Table`)
63-
- `destroy<K, V>(self: Self<K, V>, dk: |K|, dv: |V|)`: Destroys a map with given functions that destroy correponding elements. (**not** supported by `Table` and `TableWithLength`)
63+
- `destroy<K, V>(self: Self<K, V>, dk: |K|, dv: |V|)`: Destroys a map with given functions that destroy corresponding elements. (**not** supported by `Table` and `TableWithLength`)
6464

6565
#### Managing Entries
6666

0 commit comments

Comments
 (0)