1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-20 05:21:26 +02:00

changes string interpolation text as suggested by @fbernier

This commit is contained in:
David Underwood
2013-07-02 13:24:50 -04:00
parent 07aa1d9337
commit 918123e8ce

View File

@@ -47,9 +47,9 @@ false #=> falsehood
'I am a string' 'I am a string'
"I am a string too" "I am a string too"
placeholder = "use variables inline" placeholder = "use string interpolation"
"I can #{placeholder} when using double quoted strings" "I can #{placeholder} when using double quoted strings"
#=> "I can use variables inline when using double quoted strings" #=> "I can use string interpolation when using double quoted strings"
# print to the output # print to the output