summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMax Schumacher <maximilianbschumacher@gmail.com>2020-01-31 20:09:24 +0100
committerGitHub <noreply@github.com>2020-01-31 20:09:24 +0100
commitdb9e4f44d31d9793961fce8d1b36ad95e4772c85 (patch)
treec7e2d0974790b79d5f029dacf5097b2e965d81d2
parent634932ccc753a9381b7004cc466b1dcb19f3ace9 (diff)
parent2eb57cb02376df701e80d2692deab5809214171a (diff)
Merge pull request #3836 from bartonstanley/patch-1
[ruby/en] Change "invokation" to "invocation"
-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?