Skip to content

Commit 7bbf74b

Browse files
committed
fix: Spelling
1 parent 9de6bcd commit 7bbf74b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

text/3830-dedented-string-literals.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,9 @@ let _ = d"
941941
# Drawbacks
942942
[drawbacks]: #drawbacks
943943

944-
- While the reference specifies `r` as ["not processing ay escapes"](https://doc.rust-lang.org/reference/tokens.html#raw-string-literals), users are less likely familiar with the exact definition and more familiar with the name and the affect: it leaves the string as-is. This can feel contradictory to `d` which is a specific form of modifying the string content and so a `dr""` could read as something that should be a compilation error.
944+
- While the reference specifies `r` as ["not processing any escapes"](https://doc.rust-lang.org/reference/tokens.html#raw-string-literals), users are less likely familiar with the exact definition and more familiar with the name and the effect: it leaves the string as-is.
945+
946+
This can feel contradictory to `d` which is a specific form of modifying the string content and so a `dr""` could read as something that should be a compilation error.
945947

946948
- The more string literal modifiers that are stacked on each other, more work is needed to decipher it and can feel a bit too foreign
947949

0 commit comments

Comments
 (0)