@@ -640,21 +640,21 @@ LL | /// or even to add a number `n` to 42 (`add(42, n)\`)!
640640 | +
641641
642642error: unescaped backtick
643- --> $DIR/unescaped_backticks.rs:108:1
643+ --> $DIR/unescaped_backticks.rs:108:9
644644 |
645645LL | #[doc = "`"]
646- | ^^^^^^^^^ ^^^
646+ | ^^^
647647 |
648648 = help: the opening or closing backtick of an inline code may be missing
649649 = help: if you meant to use a literal backtick, escape it
650650 change: `
651651 to this: \`
652652
653653error: unescaped backtick
654- --> $DIR/unescaped_backticks.rs:115:1
654+ --> $DIR/unescaped_backticks.rs:115:9
655655 |
656656LL | #[doc = concat!("\\", "`")]
657- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^
657+ | ^^^^^^^^^^^^^^^^^^^^
658658 |
659659 = help: the opening backtick of an inline code may be missing
660660 change: \`
@@ -664,10 +664,10 @@ LL | #[doc = concat!("\\", "`")]
664664 to this: \\`
665665
666666error: unescaped backtick
667- --> $DIR/unescaped_backticks.rs:119:1
667+ --> $DIR/unescaped_backticks.rs:119:9
668668 |
669669LL | #[doc = "Addition is commutative, which means that add(a, b)` is the same as `add(b, a)`."]
670- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
670+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
671671 |
672672 = help: the opening backtick of a previous inline code may be missing
673673 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
677677 to this: Addition is commutative, which means that add(a, b)` is the same as `add(b, a)\`.
678678
679679error: unescaped backtick
680- --> $DIR/unescaped_backticks.rs:123:1
680+ --> $DIR/unescaped_backticks.rs:123:9
681681 |
682682LL | #[doc = "Addition is commutative, which means that `add(a, b) is the same as `add(b, a)`."]
683- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
683+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
684684 |
685685 = help: a previous inline code might be longer than expected
686686 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
690690 to this: Addition is commutative, which means that `add(a, b) is the same as `add(b, a)\`.
691691
692692error: unescaped backtick
693- --> $DIR/unescaped_backticks.rs:127:1
693+ --> $DIR/unescaped_backticks.rs:127:9
694694 |
695695LL | #[doc = "Addition is commutative, which means that `add(a, b)` is the same as add(b, a)`."]
696- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
696+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
697697 |
698698 = help: the opening backtick of an inline code may be missing
699699 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
703703 to this: Addition is commutative, which means that `add(a, b)` is the same as add(b, a)\`.
704704
705705error: unescaped backtick
706- --> $DIR/unescaped_backticks.rs:131:1
706+ --> $DIR/unescaped_backticks.rs:131:9
707707 |
708708LL | #[doc = "Addition is commutative, which means that `add(a, b)` is the same as `add(b, a)."]
709- | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
709+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
710710 |
711711 = help: the closing backtick of an inline code may be missing
712712 change: Addition is commutative, which means that `add(a, b)` is the same as `add(b, a).
0 commit comments