summaryrefslogtreecommitdiffhomepage
path: root/ruby.html.markdown
diff options
context:
space:
mode:
authorBarton Stanley <bartonstanley@users.noreply.github.com>2020-01-31 13:04:15 -0600
committerGitHub <noreply@github.com>2020-01-31 13:04:15 -0600
commit2eb57cb02376df701e80d2692deab5809214171a (patch)
treec7e2d0974790b79d5f029dacf5097b2e965d81d2 /ruby.html.markdown
parent634932ccc753a9381b7004cc466b1dcb19f3ace9 (diff)
Change "invokation" to "invocation"
Diffstat (limited to 'ruby.html.markdown')
-rw-r--r--ruby.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown
index 3fc2ed2d..376f4a47 100644
--- a/ruby.html.markdown
+++ b/ruby.html.markdown
@@ -256,7 +256,7 @@ else
'else, also optional'
end
-# If a condition controls invokation of a single statement rather than a block of code
+# If a condition controls invocation of a single statement rather than a block of code
# you can use postfix-if notation
warnings = ['Patronimic is missing', 'Address too short']
puts("Some warnings occurred:\n" + warnings.join("\n")) if !warnings.empty?