diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-03-29 21:29:32 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-03-29 21:29:32 +0000 |
commit | aced33667bccabd0f4ec8681ea81a556201cc668 (patch) | |
tree | a9322f159c02a7621ff304ef4afb7222d03ac1fa /src/content/chapter0_basics/lesson02_modules/en.html | |
parent | bcbd1c69a85e4572a0542ef205bd2528532b618b (diff) | |
download | tour-aced33667bccabd0f4ec8681ea81a556201cc668.tar.gz tour-aced33667bccabd0f4ec8681ea81a556201cc668.zip |
Typos
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> |