aboutsummaryrefslogtreecommitdiffstats
path: root/lib/abbrev.rb
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-15 15:16:20 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-15 15:16:20 +0000
commitf2c84d2da035e73c432e4ba182b5eb077aa90384 (patch)
tree9b13d5af54ad2b2dcb7677fd88c371acf93f836b /lib/abbrev.rb
parent0328ab1d0a3677be6dbd93eb8ffc7b05d3921ef0 (diff)
downloadruby-f2c84d2da035e73c432e4ba182b5eb077aa90384.tar.gz
lib/abbrev.rb (Array#abbrev): add missing '"' in documentation.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/abbrev.rb')
-rw-r--r--lib/abbrev.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/abbrev.rb b/lib/abbrev.rb
index aa7e33a65d..e6e810bf69 100644
--- a/lib/abbrev.rb
+++ b/lib/abbrev.rb
@@ -84,7 +84,7 @@ class Array
# the pattern or starting with the string are considered.
#
# %w{ car cone }.abbrev #=> { "ca" => "car", "car" => "car",
- # "co" => "cone", "con" => cone",
+ # "co" => "cone", "con" => "cone",
# "cone" => "cone" }
def abbrev(pattern = nil)
Abbrev::abbrev(self, pattern)