@@ -243,5 +243,73 @@ help: use an automatic link instead
243243LL | #[doc = "<https://example.com/raw>"]
244244   |          +                       +
245245
246- error: aborting due to 20 previous errors
246+ error: this URL is not a hyperlink
247+   --> $DIR/bare-urls.rs:72:5
248+    |
249+ LL | /// [https://bloob.blob]
250+    |     ^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://bloob.blob>`
251+    |
252+    = note: bare URLs are not automatically turned into clickable links
253+ 
254+ error: this URL is not a hyperlink
255+   --> $DIR/bare-urls.rs:74:7
256+    |
257+ LL | /// [ https://bloob.blob ]
258+    |       ^^^^^^^^^^^^^^^^^^
259+    |
260+    = note: bare URLs are not automatically turned into clickable links
261+ help: use an automatic link instead
262+    |
263+ LL | /// [ <https://bloob.blob> ]
264+    |       +                  +
265+ 
266+ error: this URL is not a hyperlink
267+   --> $DIR/bare-urls.rs:76:7
268+    |
269+ LL | /// [ https://bloob.blob]
270+    |       ^^^^^^^^^^^^^^^^^^
271+    |
272+    = note: bare URLs are not automatically turned into clickable links
273+ help: use an automatic link instead
274+    |
275+ LL | /// [ <https://bloob.blob>]
276+    |       +                  +
277+ 
278+ error: this URL is not a hyperlink
279+   --> $DIR/bare-urls.rs:78:6
280+    |
281+ LL | /// [https://bloob.blob ]
282+    |      ^^^^^^^^^^^^^^^^^^
283+    |
284+    = note: bare URLs are not automatically turned into clickable links
285+ help: use an automatic link instead
286+    |
287+ LL | /// [<https://bloob.blob> ]
288+    |      +                  +
289+ 
290+ error: this URL is not a hyperlink
291+   --> $DIR/bare-urls.rs:80:6
292+    |
293+ LL | /// [https://bloob.blob
294+    |      ^^^^^^^^^^^^^^^^^^
295+    |
296+    = note: bare URLs are not automatically turned into clickable links
297+ help: use an automatic link instead
298+    |
299+ LL | /// [<https://bloob.blob>
300+    |      +                  +
301+ 
302+ error: this URL is not a hyperlink
303+   --> $DIR/bare-urls.rs:82:5
304+    |
305+ LL | /// https://bloob.blob]
306+    |     ^^^^^^^^^^^^^^^^^^
307+    |
308+    = note: bare URLs are not automatically turned into clickable links
309+ help: use an automatic link instead
310+    |
311+ LL | /// <https://bloob.blob>]
312+    |     +                  +
313+ 
314+ error: aborting due to 26 previous errors
247315
0 commit comments