diff options
author | Scott Bowles <shbowles@gmail.com> | 2024-01-19 22:38:56 -0500 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-20 09:35:40 +0000 |
commit | 42df4f111a5cb49e660966784a4d860094458925 (patch) | |
tree | c772c1bb8404f965a55f84be4350b258e0c8c5e6 /src | |
parent | ce9b3e9386824e93737d7495e1dbd8425fcc5d7c (diff) | |
download | tour-42df4f111a5cb49e660966784a4d860094458925.tar.gz tour-42df4f111a5cb49e660966784a4d860094458925.zip |
Typo in hello world
Minor fix changing "use" to "using"
Diffstat (limited to 'src')
-rw-r--r-- | src/content/chapter0_basics/lesson01_hello_world/text.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/chapter0_basics/lesson01_hello_world/text.html b/src/content/chapter0_basics/lesson01_hello_world/text.html index 5142301..a7dfc25 100644 --- a/src/content/chapter0_basics/lesson01_hello_world/text.html +++ b/src/content/chapter0_basics/lesson01_hello_world/text.html @@ -8,7 +8,7 @@ module, which is part of the Gleam standard library. </p> <p> - In a normal Gleam program this program would be run use the command + In a normal Gleam program this program would be run using the command <code>gleam run</code> on the command line, but here in this tour the program is automatically compiled and run as the code is edited. </p> |