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
commit9195e5ba6e0d272148ba36680c0823ed16f8fa90 (patch)
tree9e4e4727187accedbfe1bdcf7579f891d7e9568e /doc
parent6b6a0d830b60fa22fa36c7f70f59a198849b1a4c (diff)
downloadruby-9195e5ba6e0d272148ba36680c0823ed16f8fa90.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