about summary refs log tree commit diff
path: root/tests/rustdoc-ui/lints/bare-urls-limit.stderr
blob: 9573665cb13114d25957288af5e6f1776f8baf89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: this URL is not a hyperlink
  --> $DIR/bare-urls-limit.rs:9:9
   |
LL |   #[doc = "good: <https://example.com/> \n\n"]
   |  _________^
LL | |
LL | | #[doc = "bad: https://example.com/"]
   | |___________________________________^
   |
   = note: bare URLs are not automatically turned into clickable links
note: the lint level is defined here
  --> $DIR/bare-urls-limit.rs:3:9
   |
LL | #![deny(rustdoc::bare_urls)]
   |         ^^^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error