diff options
author | David Underwood <david.underwood@jadedpixel.com> | 2013-07-02 13:24:50 -0400 |
---|---|---|
committer | David Underwood <david.underwood@jadedpixel.com> | 2013-07-02 13:24:50 -0400 |
commit | 918123e8cef7047550bf3bb9dbecc9b3efb01de2 (patch) | |
tree | 5575484e36963a97c78229dd7b2d99995292c269 | |
parent | 07aa1d9337252eea9f4d5103e028c894132be91f (diff) |
changes string interpolation text as suggested by @fbernier
-rw-r--r-- | ruby.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown index b07c92c9..44b0e46c 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -47,9 +47,9 @@ false #=> falsehood 'I am a string' "I am a string too" -placeholder = "use variables inline" +placeholder = "use string interpolation" "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 |