summaryrefslogtreecommitdiffhomepage
path: root/citron.html.markdown
diff options
context:
space:
mode:
authorMarcel Ribeiro-Dantas <mribeirodantas@seqera.io>2022-12-10 12:05:34 -0300
committerMarcel Ribeiro-Dantas <mribeirodantas@seqera.io>2022-12-10 12:05:34 -0300
commitbba9f7df211d63293e2a957872d156a0a6dfcd48 (patch)
treecd8fe10053e400fe06009a4dc40cec3b2e5892b6 /citron.html.markdown
parent354fe6fe7dd8085b88b0b1a2af2f5e612fe196f2 (diff)
Fixes typos in many different English articles
Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io>
Diffstat (limited to 'citron.html.markdown')
-rw-r--r--citron.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/citron.html.markdown b/citron.html.markdown
index bd3c398c..ce607ca1 100644
--- a/citron.html.markdown
+++ b/citron.html.markdown
@@ -68,7 +68,7 @@ False not. # True
###########################################
# You may assign values to the current scope:
-var name is value. # assignes `value` into `name`
+var name is value. # assigns `value` into `name`
# You may also assign values into the current object's namespace
my name is value. # assigns `value` into the current object's `name` property
@@ -146,7 +146,7 @@ add(3, 5). # 8
3 `add` 5. # 8
# This call binds as such: add[(3), 5]
-# because the default fixity is left, and the default precedance is 1
+# because the default fixity is left, and the default precedence is 1
# You may change the precedence/fixity of this operator with a pragma
#:declare infixr 1 add