Skip to content

Commit e273828

Browse files
Wording improvement
1 parent 8ce9460 commit e273828

File tree

1 file changed

+4
-2
lines changed
  • src/librustc_error_codes/error_codes

1 file changed

+4
-2
lines changed

src/librustc_error_codes/error_codes/E0748.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ Erroneous code example:
66
```compile_fail,E0748
77
let dolphins = r##"Dolphins!"#; // error!
88
```
9+
910
To terminate a raw string, you have to have the same number of `#` at the end
10-
than at the beginning. Example:
11+
as at the beginning. Example:
12+
1113
```
12-
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
1315
// all good!
1416
```

0 commit comments

Comments
 (0)