From e6e9f123c8bef58309f960f020c91e455412490a Mon Sep 17 00:00:00 2001 From: osrm <90407222+osrm@users.noreply.github.com> Date: Fri, 2 Aug 2024 21:32:09 +0900 Subject: [PATCH] chore: fix typo ch04-05-modules-and-imports.md polish sentence and fix typo --- book/src/ch04-05-modules-and-imports.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/ch04-05-modules-and-imports.md b/book/src/ch04-05-modules-and-imports.md index b2cc01c..570c939 100644 --- a/book/src/ch04-05-modules-and-imports.md +++ b/book/src/ch04-05-modules-and-imports.md @@ -28,7 +28,7 @@ module 0x1::SimpleMath { This SimpleMath module provides two functions, add and subtract, which can be used by other parts of your Move application. -## Importing from Modules +## Importing Modules To use the functionality defined in a module, you must import it. This can be done in scripts or other modules. @@ -104,7 +104,7 @@ module user_manager_addr::UserManager { } ``` -Here we're using a named address. +Here we use a named address. For Aptos, in your `Move.toml` file, under `[addresses]` you would add: