|
| 1 | +error: code link adjacent to code text |
| 2 | + --> tests/ui/doc/link_adjacent.rs:13:14 |
| 3 | + | |
| 4 | +LL | //! This is: [`first`](x)`second` |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^ |
| 6 | + | |
| 7 | + = help: separate code snippets will be shown with a gap |
| 8 | + = note: `-D clippy::doc-markdown` implied by `-D warnings` |
| 9 | + = help: to override `-D warnings` add `#[allow(clippy::doc_markdown)]` |
| 10 | +help: wrap the entire group in `<code>` tags |
| 11 | + | |
| 12 | +LL | //! This is: <code>[first](x)second</code> |
| 13 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 14 | + |
| 15 | +error: code link adjacent to code text |
| 16 | + --> tests/ui/doc/link_adjacent.rs:16:16 |
| 17 | + | |
| 18 | +LL | //! So is this `first`[`second`](x) |
| 19 | + | ^^^^^^^^^^^^^^^^^^^^ |
| 20 | + | |
| 21 | + = help: separate code snippets will be shown with a gap |
| 22 | +help: wrap the entire group in `<code>` tags |
| 23 | + | |
| 24 | +LL | //! So is this <code>first[second](x)</code> |
| 25 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 26 | + |
| 27 | +error: code link adjacent to code text |
| 28 | + --> tests/ui/doc/link_adjacent.rs:19:16 |
| 29 | + | |
| 30 | +LL | //! So is this [`first`](x)[`second`](x) |
| 31 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 32 | + | |
| 33 | + = help: separate code snippets will be shown with a gap |
| 34 | +help: wrap the entire group in `<code>` tags |
| 35 | + | |
| 36 | +LL | //! So is this <code>[first](x)[second](x)</code> |
| 37 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 38 | + |
| 39 | +error: code link adjacent to code text |
| 40 | + --> tests/ui/doc/link_adjacent.rs:22:16 |
| 41 | + | |
| 42 | +LL | //! So is this [`first`](x)[`second`](x)[`third`](x) |
| 43 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 44 | + | |
| 45 | + = help: separate code snippets will be shown with a gap |
| 46 | +help: wrap the entire group in `<code>` tags |
| 47 | + | |
| 48 | +LL | //! So is this <code>[first](x)[second](x)[third](x)</code> |
| 49 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 50 | + |
| 51 | +error: code link adjacent to code text |
| 52 | + --> tests/ui/doc/link_adjacent.rs:25:16 |
| 53 | + | |
| 54 | +LL | //! So is this [`first`](x)`second`[`third`](x) |
| 55 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 56 | + | |
| 57 | + = help: separate code snippets will be shown with a gap |
| 58 | +help: wrap the entire group in `<code>` tags |
| 59 | + | |
| 60 | +LL | //! So is this <code>[first](x)second[third](x)</code> |
| 61 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 62 | + |
| 63 | +error: code link adjacent to code text |
| 64 | + --> tests/ui/doc/link_adjacent.rs:38:14 |
| 65 | + | |
| 66 | +LL | /// This is: [`first`](x)`second` arst |
| 67 | + | ^^^^^^^^^^^^^^^^^^^^ |
| 68 | + | |
| 69 | + = help: separate code snippets will be shown with a gap |
| 70 | +help: wrap the entire group in `<code>` tags |
| 71 | + | |
| 72 | +LL | /// This is: <code>[first](x)second</code> arst |
| 73 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 74 | + |
| 75 | +error: code link adjacent to code text |
| 76 | + --> tests/ui/doc/link_adjacent.rs:41:16 |
| 77 | + | |
| 78 | +LL | /// So is this `first`[`second`](x) arst |
| 79 | + | ^^^^^^^^^^^^^^^^^^^^ |
| 80 | + | |
| 81 | + = help: separate code snippets will be shown with a gap |
| 82 | +help: wrap the entire group in `<code>` tags |
| 83 | + | |
| 84 | +LL | /// So is this <code>first[second](x)</code> arst |
| 85 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 86 | + |
| 87 | +error: code link adjacent to code text |
| 88 | + --> tests/ui/doc/link_adjacent.rs:44:16 |
| 89 | + | |
| 90 | +LL | /// So is this [`first`](x)[`second`](x) arst |
| 91 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 92 | + | |
| 93 | + = help: separate code snippets will be shown with a gap |
| 94 | +help: wrap the entire group in `<code>` tags |
| 95 | + | |
| 96 | +LL | /// So is this <code>[first](x)[second](x)</code> arst |
| 97 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 98 | + |
| 99 | +error: code link adjacent to code text |
| 100 | + --> tests/ui/doc/link_adjacent.rs:47:16 |
| 101 | + | |
| 102 | +LL | /// So is this [`first`](x)[`second`](x)[`third`](x) arst |
| 103 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 104 | + | |
| 105 | + = help: separate code snippets will be shown with a gap |
| 106 | +help: wrap the entire group in `<code>` tags |
| 107 | + | |
| 108 | +LL | /// So is this <code>[first](x)[second](x)[third](x)</code> arst |
| 109 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 110 | + |
| 111 | +error: code link adjacent to code text |
| 112 | + --> tests/ui/doc/link_adjacent.rs:50:16 |
| 113 | + | |
| 114 | +LL | /// So is this [`first`](x)`second`[`third`](x) arst |
| 115 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 116 | + | |
| 117 | + = help: separate code snippets will be shown with a gap |
| 118 | +help: wrap the entire group in `<code>` tags |
| 119 | + | |
| 120 | +LL | /// So is this <code>[first](x)second[third](x)</code> arst |
| 121 | + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 122 | + |
| 123 | +error: aborting due to 10 previous errors |
| 124 | + |
0 commit comments