diff options
Diffstat (limited to 'ruby.html.markdown')
-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 |