summaryrefslogtreecommitdiff
path: root/doc/colm/0_05_fizzbuzz.adoc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2019-09-13 07:30:02 -0600
committerGitHub <noreply@github.com>2019-09-13 07:30:02 -0600
commit99c75aa9227efe3c2bfb7959dc0c2b7825a03d8b (patch)
tree490de2c73247a62aeb764c2972cd92a6504530bf /doc/colm/0_05_fizzbuzz.adoc
parent2f7331772690af0f9fb189d735c04ad7263f489b (diff)
parent45c11a0a88b7d6acd543c7c473955c4bbc968906 (diff)
downloadcolm-99c75aa9227efe3c2bfb7959dc0c2b7825a03d8b.tar.gz
Merge pull request #2 from phorward/phorward
Fixing some typos in existing docs
Diffstat (limited to 'doc/colm/0_05_fizzbuzz.adoc')
-rw-r--r--doc/colm/0_05_fizzbuzz.adoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/colm/0_05_fizzbuzz.adoc b/doc/colm/0_05_fizzbuzz.adoc
index 6e30279e..fc612943 100644
--- a/doc/colm/0_05_fizzbuzz.adoc
+++ b/doc/colm/0_05_fizzbuzz.adoc
@@ -35,7 +35,7 @@ hello 9 4
== Real FizzBuzz
-The fizzbuzz test is often used to check is someone has programming skils.
+The fizzbuzz test is often used to check if someone has programming skills.
It is the next logical step to 'hello world'.
[source,chapel]
@@ -46,11 +46,11 @@ include::code/fizzbuzz.lm[]
It appears that there is no modulo operator ('%').
Therefor we'll resort to a function.
-Writing a function seems rather straight forward
+Writing a function seems rather straight forward.
Please note:
* that '&&' is working.
-* The return type is needed, but if 'nil' is retuned by default.
+* The return type is needed, but if 'nil' is returned by default.
[source,bash]
----