Minor tweak to expected echo output

This commit is contained in:
Malcolm Fell 2013-06-30 12:07:21 +12:00
parent e307da7812
commit efafa87bba

View File

@ -70,7 +70,7 @@ $number /= $float; // Divide and assign the quotient to $number
$sgl_quotes = '$String'; // => '$String'
// Avoid using double quotes except to embed other variables
$dbl_quotes = "This is a $sgl_quotes."; // => 'This is a $String'
$dbl_quotes = "This is a $sgl_quotes."; // => 'This is a $String.'
// Special characters are only escaped in double quotes
$escaped = "This contains a \t tab character.";