It IS right, because when you enter strings between " it will render the string, while if you enter strings between ' it will not.
ie. if you do this
$string = "Hello\nworld"; print $string;
The output would be
Hello
world
if you do this
$string = 'Hello\nworld'; print $string;
The output would be
Hello\nworld
Another thing...
$text = "Hello ".$string.", how are you?";
is the same thing as
$text = "Hello $string, how are you?";
As i've said, " will render the string 🙂