@@ -640,21 +640,21 @@ LL | /// or even to add a number `n` to 42 (`add(42, n)\`)!
640
640
| +
641
641
642
642
error: unescaped backtick
643
- --> $DIR/unescaped_backticks.rs:108:1
643
+ --> $DIR/unescaped_backticks.rs:108:9
644
644
|
645
645
LL | #[doc = "`"]
646
- | ^^^^^^^^^ ^^^
646
+ | ^^^
647
647
|
648
648
= help: the opening or closing backtick of an inline code may be missing
649
649
= help: if you meant to use a literal backtick, escape it
650
650
change: `
651
651
to this: \`
652
652
653
653
error: unescaped backtick
654
- --> $DIR/unescaped_backticks.rs:115:1
654
+ --> $DIR/unescaped_backticks.rs:115:9
655
655
|
656
656
LL | #[doc = concat!("\\", "`")]
657
- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^
657
+ | ^^^^^^^^^^^^^^^^^^^^
658
658
|
659
659
= help: the opening backtick of an inline code may be missing
660
660
change: \`
@@ -664,10 +664,10 @@ LL | #[doc = concat!("\\", "`")]
664
664
to this: \\`
665
665
666
666
error: unescaped backtick
667
- --> $DIR/unescaped_backticks.rs:119:1
667
+ --> $DIR/unescaped_backticks.rs:119:9
668
668
|
669
669
LL | #[doc = "Addition is commutative, which means that add(a, b)` is the same as `add(b, a)`."]
670
- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
670
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
671
671
|
672
672
= help: the opening backtick of a previous inline code may be missing
673
673
change: Addition is commutative, which means that add(a, b)` is the same as `add(b, a)`.
@@ -677,10 +677,10 @@ LL | #[doc = "Addition is commutative, which means that add(a, b)` is the same a
677
677
to this: Addition is commutative, which means that add(a, b)` is the same as `add(b, a)\`.
678
678
679
679
error: unescaped backtick
680
- --> $DIR/unescaped_backticks.rs:123:1
680
+ --> $DIR/unescaped_backticks.rs:123:9
681
681
|
682
682
LL | #[doc = "Addition is commutative, which means that `add(a, b) is the same as `add(b, a)`."]
683
- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
683
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
684
684
|
685
685
= help: a previous inline code might be longer than expected
686
686
change: Addition is commutative, which means that `add(a, b) is the same as `add(b, a)`.
@@ -690,10 +690,10 @@ LL | #[doc = "Addition is commutative, which means that `add(a, b) is the same a
690
690
to this: Addition is commutative, which means that `add(a, b) is the same as `add(b, a)\`.
691
691
692
692
error: unescaped backtick
693
- --> $DIR/unescaped_backticks.rs:127:1
693
+ --> $DIR/unescaped_backticks.rs:127:9
694
694
|
695
695
LL | #[doc = "Addition is commutative, which means that `add(a, b)` is the same as add(b, a)`."]
696
- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
696
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
697
697
|
698
698
= help: the opening backtick of an inline code may be missing
699
699
change: Addition is commutative, which means that `add(a, b)` is the same as add(b, a)`.
@@ -703,10 +703,10 @@ LL | #[doc = "Addition is commutative, which means that `add(a, b)` is the same
703
703
to this: Addition is commutative, which means that `add(a, b)` is the same as add(b, a)\`.
704
704
705
705
error: unescaped backtick
706
- --> $DIR/unescaped_backticks.rs:131:1
706
+ --> $DIR/unescaped_backticks.rs:131:9
707
707
|
708
708
LL | #[doc = "Addition is commutative, which means that `add(a, b)` is the same as `add(b, a)."]
709
- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
709
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
710
710
|
711
711
= help: the closing backtick of an inline code may be missing
712
712
change: Addition is commutative, which means that `add(a, b)` is the same as `add(b, a).
0 commit comments