1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 57517: [Backport #13190]

doc: Fix error for escape sequences in string literals

	Backslash goes first in escape sequences, so it must be
	"any other character following a backslash is interpreted as ...",
	while the doc says "...followed by...".

	Author: Marcus Stollsteimer <sto.mar@web.de>
	[ruby-core:79418] [Bug #13190]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@58032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2017-03-19 21:48:03 +00:00
parent 6781722aa4
commit 26b9fb4711
2 changed files with 2 additions and 2 deletions

View file

@ -108,7 +108,7 @@ sequences are as follows:
\c\M-x same as above
\c? or \C-? delete, ASCII 7Fh (DEL)
Any other character followed by a backslash is interpreted as the
Any other character following a backslash is interpreted as the
character itself.
Double-quote strings allow interpolation of other values using

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.3.3"
#define RUBY_RELEASE_DATE "2017-03-20"
#define RUBY_PATCHLEVEL 253
#define RUBY_PATCHLEVEL 254
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3