aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-16 05:31:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-16 05:31:26 +0000
commit22190b3f32010075c1dacd6d9cbec3fa488a6187 (patch)
tree9e4e4727187accedbfe1bdcf7579f891d7e9568e /doc
parent35947f6d42705b8f37313a68b03f2f5b846edd6a (diff)
downloadruby-22190b3f32010075c1dacd6d9cbec3fa488a6187.tar.gz
literals.rdoc: fix typos
* doc/syntax/literals.rdoc (Strings): fix typos. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/syntax/literals.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/syntax/literals.rdoc b/doc/syntax/literals.rdoc
index 2dac68b77a..1d4ca80ada 100644
--- a/doc/syntax/literals.rdoc
+++ b/doc/syntax/literals.rdoc
@@ -133,13 +133,13 @@ Basically only one character can be placed after <tt>?</tt>:
?abc #=> SyntaxError
Exceptionally, <tt>\C-</tt>, <tt>\M-</tt> and their combination are allowed
-before a character. They means "control", "meta" and "control-meta"
+before a character. They mean "control", "meta" and "control-meta"
respectively:
?\C-a #=> "\x01"
?\M-a #=> "\xE1"
?\M-\C-a #=> "\x81"
- ?\C-\A-a #=> "\x81", same as above
+ ?\C-\M-a #=> "\x81", same as above
=== Here Documents