rust/tests/rustdoc-ui/lints/bare-urls.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

212 lines
6.0 KiB
Plaintext
Raw Permalink Normal View History

error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:5:5
2020-10-12 11:29:56 -05:00
|
LL | /// https://somewhere.com
| ^^^^^^^^^^^^^^^^^^^^^
2020-10-12 11:29:56 -05:00
|
2022-09-23 13:34:34 -05:00
= note: bare URLs are not automatically turned into clickable links
2020-10-12 11:29:56 -05:00
note: the lint level is defined here
--> $DIR/bare-urls.rs:3:9
2020-10-12 11:29:56 -05:00
|
2021-03-27 22:35:02 -05:00
LL | #![deny(rustdoc::bare_urls)]
| ^^^^^^^^^^^^^^^^^^
help: use an automatic link instead
|
LL | /// <https://somewhere.com>
| + +
2020-10-12 11:29:56 -05:00
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:7:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com/a
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com/a>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:9:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://www.somewhere.com
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://www.somewhere.com>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:11:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://www.somewhere.com/a
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://www.somewhere.com/a>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:13:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://subdomain.example.com
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://subdomain.example.com>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:15:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com?
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com?>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:17:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com/a?
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com/a?>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:19:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com?hello=12
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com?hello=12>
| + +
2020-10-12 11:29:56 -05:00
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:21:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com/a?hello=12
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com/a?hello=12>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:23:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://example.com?hello=12#xyz
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://example.com?hello=12#xyz>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:25:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://example.com/a?hello=12#xyz
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://example.com/a?hello=12#xyz>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:27:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://example.com#xyz
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://example.com#xyz>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:29:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://example.com/a#xyz
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://example.com/a#xyz>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:31:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com?hello=12&bye=11
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com?hello=12&bye=11>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:33:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com/a?hello=12&bye=11
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com/a?hello=12&bye=11>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:35:5
2020-10-14 08:11:55 -05:00
|
LL | /// https://somewhere.com?hello=12&bye=11#xyz
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// <https://somewhere.com?hello=12&bye=11#xyz>
| + +
2020-10-14 08:11:55 -05:00
error: this URL is not a hyperlink
--> $DIR/bare-urls.rs:37:10
2020-10-14 08:11:55 -05:00
|
LL | /// hey! https://somewhere.com/a?hello=12&bye=11#xyz
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: bare URLs are not automatically turned into clickable links
help: use an automatic link instead
|
LL | /// hey! <https://somewhere.com/a?hello=12&bye=11#xyz>
| + +
2020-10-14 08:11:55 -05:00
error: aborting due to 17 previous errors
2020-10-12 11:29:56 -05:00