Actions
Bug #11871
closedHeredoc unindentation with <<~ with single-quoted identifier flush-lefts the content
Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
2.3.0p0 (2015-12-25 revision 53290) [x86_64-linux]
Description
Heredoc unindentation with <<~
works as expected when the identifier is bare or double-quoted:
s = <<~_
fiwfewifjf
iofwejfweifwe
fjiofwejfweiof f
fiwejfweof
_
puts s
or
s = <<~"_"
fiwfewifjf
iofwejfweifwe
fjiofwejfweiof f
fiwejfweof
_
puts s
Output:
fiwfewifjf
iofwejfweifwe
fjiofwejfweiof f
fiwejfweof
But with a single-quoted identifier, the content is flushed left:
s = <<~'_'
fiwfewifjf
iofwejfweifwe
fjiofwejfweiof f
fiwejfweof
_
puts s
Output:
fiwfewifjf
iofwejfweifwe
fjiofwejfweiof f
fiwejfweof
Actions
Like0
Like0Like0Like0