Fix typo in ruby.html.markdown

"arugments" => "arguments"
This commit is contained in:
Alex Mendes da Costa 2019-12-09 09:19:36 -08:00 committed by GitHub
parent 0a6d14f857
commit 03c06ac1bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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."