summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-05 16:08:19 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-05 16:08:19 +0000
commit8aceebf8a117cc89d0ffb17f582dc4a9bbb7d59f (patch)
tree13c90322e9a0beda6848f218b966adc8231988d3 /doc
parent649d6f47d266f03afe6707d04f4ecd5252a8884e (diff)
merge revision(s) 40586:
* doc/syntax/refinements.rdoc : Fix a missing quote Patch by Robin Dupret. [Fix GH-271] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@40588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/syntax/refinements.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/syntax/refinements.rdoc b/doc/syntax/refinements.rdoc
index bb3096eee9..7b3f0f6127 100644
--- a/doc/syntax/refinements.rdoc
+++ b/doc/syntax/refinements.rdoc
@@ -18,7 +18,7 @@ Here is a basic refinement:
class C
def foo
- puts "C#foo
+ puts "C#foo"
end
end