From ae4afa5a4e573d7b79a76bfea4bd27befc673acb Mon Sep 17 00:00:00 2001 From: drbrain Date: Mon, 16 May 2011 21:57:22 +0000 Subject: [PATCH] * lib/optparse.rb: Add link to make_switch to improve documentation. Patch by David Copeland. [Ruby 1.9 - Bug #4708] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/optparse.rb | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d6151fe5ed..59537ae8a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue May 17 06:56:26 2011 Eric Hodel + + * lib/optparse.rb: Add link to make_switch to improve documentation. + Patch by David Copeland. [Ruby 1.9 - Bug #4708] + Tue May 17 06:50:40 2011 Eric Hodel * lib/observer.rb: Improve documentation. Patch by David Copeland. diff --git a/lib/optparse.rb b/lib/optparse.rb index 70fda81207..79a95c1462 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -60,7 +60,8 @@ # 4. Arguments can be automatically converted to a specified class. # 5. Arguments can be restricted to a certain set. # -# All of these features are demonstrated in the examples below. +# All of these features are demonstrated in the examples below. See +# #make_switch for full documentation. # # === Minimal example #