diff --git a/doc/tutorial.md b/doc/tutorial.md index ac559ae69b7b5a785b7552ddbcaf4701d0c35a65..1e9b64c9e2235ac5adc31655a7f68c50123292cc 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -343,7 +343,8 @@ Characters, the `char` type, are four-byte Unicode codepoints, whose literals are written between single quotes, as in `'x'`. Just like C, Rust understands a number of character escapes, using the backslash character, such as `\n`, `\r`, and `\t`. String literals, -written between double quotes, allow the same escape sequences. +written between double quotes, allow the same escape sequences, and do no +other processing, unlike languages such as PHP or shell. On the other hand, raw string literals do not process any escape sequences. They are written as `r##"blah"##`, with a matching number of zero or more `#`