diff options
Diffstat (limited to 'src/content/chapter0_basics/lesson02_modules/en.html')
-rw-r--r-- | src/content/chapter0_basics/lesson02_modules/en.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/content/chapter0_basics/lesson02_modules/en.html b/src/content/chapter0_basics/lesson02_modules/en.html index 0ece645..d26977d 100644 --- a/src/content/chapter0_basics/lesson02_modules/en.html +++ b/src/content/chapter0_basics/lesson02_modules/en.html @@ -12,11 +12,11 @@ <p> For code in one module to access code in another module, we import it using the <code>import</code> keyword, and the name used to refer to it is the last - part of the module name. For example, to import the - <code>gleam/io</code> module is referred to as <code>io</code> once imported. + part of the module name. For example, the <code>gleam/io</code> module is + referred to as <code>io</code> once imported. </p> <p> The <code>as</code> keyword can be used to refer to a module by a different - name. See how the <code>gleam/string</code> module is be referred to as + name. See how the <code>gleam/string</code> module is referred to as <code>text</code> here. </p> |