From d8cda044883c587ba75140b72200b94051a28349 Mon Sep 17 00:00:00 2001 From: drbrain Date: Wed, 19 Dec 2012 07:19:59 +0000 Subject: [PATCH] * doc/syntax/methods.rdoc: Fixed typo. Thanks to Josh Susser. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ doc/syntax/methods.rdoc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 28a8894733..584183b013 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Dec 19 16:19:36 2012 Eric Hodel + + * doc/syntax/methods.rdoc: Fixed typo. Thanks to Josh Susser. + Wed Dec 19 16:18:22 2012 Eric Hodel * lib/rubygems/commands/query_command.rb: Refactored to improve diff --git a/doc/syntax/methods.rdoc b/doc/syntax/methods.rdoc index 15ca965774..f14a72e1f9 100644 --- a/doc/syntax/methods.rdoc +++ b/doc/syntax/methods.rdoc @@ -118,7 +118,7 @@ the caller after all positional arguments. However, this only occurs if the method does not declare any keyword arguments. def gather_arguments_keyword(*positional, keyword: nil) - p positinal: positional, keyword: keyword + p positional: positional, keyword: keyword end gather_arguments_keyword 1, 2, three: 3