We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ce9460 commit e273828Copy full SHA for e273828
src/librustc_error_codes/error_codes/E0748.md
@@ -6,9 +6,11 @@ Erroneous code example:
6
```compile_fail,E0748
7
let dolphins = r##"Dolphins!"#; // error!
8
```
9
+
10
To terminate a raw string, you have to have the same number of `#` at the end
-than at the beginning. Example:
11
+as at the beginning. Example:
12
13
-let dolphins = r#"Dolphins!"#; // one `#` at the beginning, one at the end so
14
+let dolphins = r#"Dolphins!"#; // One `#` at the beginning, one at the end so
15
// all good!
16
0 commit comments