aboutsummaryrefslogtreecommitdiffstats
path: root/lib/scanf.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-03 06:39:26 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-03 06:39:26 +0000
commit8c8c0be8312581bc781028378310bcf66f04af41 (patch)
treec71b617e3b5f049261a6d3ef2b9815b3062a3220 /lib/scanf.rb
parent593ebec87f3c4e4be4ecc20d33c943d85930eaef (diff)
downloadruby-8c8c0be8312581bc781028378310bcf66f04af41.tar.gz
* lib/scanf.rb: fixed double words typo.
[ci skip][fix GH-1123] Patch by @jwworth git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/scanf.rb')
-rw-r--r--lib/scanf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scanf.rb b/lib/scanf.rb
index b6c5287664..d12dc12f55 100644
--- a/lib/scanf.rb
+++ b/lib/scanf.rb
@@ -610,7 +610,7 @@ class IO
#
# See Scanf for details on creating a format string.
#
- # You will need to require 'scanf' to use use IO#scanf.
+ # You will need to require 'scanf' to use IO#scanf.
def scanf(str,&b) #:yield: current_match
return block_scanf(str,&b) if b
return [] unless str.size > 0