Skip to content

Commit db307a8

Browse files
committed
Auto merge of #22466 - Kimundi:str_pattern_ai_safe, r=aturon
This is not a complete implementation of the RFC: - only existing methods got updated, no new ones added - doc comments are not extensive enough yet - optimizations got lost and need to be reimplemented See rust-lang/rfcs#528 Technically a [breaking-change]
2 parents 3ea36b1 + 7ca7a34 commit db307a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ impl<'a> LabelText<'a> {
463463
fn pre_escaped_content(self) -> Cow<'a, str> {
464464
match self {
465465
EscStr(s) => s,
466-
LabelStr(s) => if s.contains_char('\\') {
466+
LabelStr(s) => if s.contains('\\') {
467467
(&*s).escape_default().into_cow()
468468
} else {
469469
s

0 commit comments

Comments
 (0)