diff options
author | Andre Polykanine <ap@oire.me> | 2019-12-10 11:00:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 11:00:57 +0200 |
commit | 319a1777aa8dc70af5cd97845ac45f1fb92795bd (patch) | |
tree | 1c574b1fca1272c3057cf6bbe7832853ebe9b579 | |
parent | 0a6d14f8574249e2692f5a1d41a6150bd3aec2e1 (diff) | |
parent | 03c06ac1bc8dc2da43d6ff29cade0d235103033c (diff) |
Merge pull request #3793 from alexmdac/patch-1
[ruby/en] Fix typo in ruby.html.markdown
-rw-r--r-- | ruby.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown index d77672ab..f437adcf 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -410,7 +410,7 @@ def guests(&block) end # The 'call' method on the Proc is similar to calling 'yield' when a block is -# present. The arguments passed to 'call' will be forwarded to the block as arugments. +# present. The arguments passed to 'call' will be forwarded to the block as arguments. guests { |n| "You have #{n} guests." } # => "You have 4 guests." |