From ec1d232f100d9cacaaa588507ff9b657b363bd29 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 21 Jul 2015 04:36:57 +0000 Subject: [PATCH] fix typo in OptionParser#complete docs [ci skip] * lib/optparse.rb (complete): [DOC] fix typo. [Fix GH-973] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51308 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/optparse.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cd35df87dd..e70174f6f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 21 13:36:54 2015 yuuji.yaginuma + + * lib/optparse.rb (complete): [DOC] fix typo. [Fix GH-973] + Tue Jul 21 05:20:21 2015 Eric Wong * io.c (nogvl_wait_for_single_fd): new function for Linux diff --git a/lib/optparse.rb b/lib/optparse.rb index d5e367ea50..e2cd964351 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -1711,7 +1711,7 @@ XXX # Completes shortened long style option switch and returns pair of # canonical switch and switch descriptor OptionParser::Switch. # - # +id+:: Searching table. + # +typ+:: Searching table. # +opt+:: Searching key. # +icase+:: Search case insensitive if true. # +pat+:: Optional pattern for completion.