@@ -2,142 +2,210 @@ error: this URL is not a hyperlink
22 --> $DIR/bare-urls.rs:5:5
33 |
44LL | /// https://somewhere.com
5- | ^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com>`
5+ | ^^^^^^^^^^^^^^^^^^^^^
66 |
77 = note: bare URLs are not automatically turned into clickable links
88note: the lint level is defined here
99 --> $DIR/bare-urls.rs:3:9
1010 |
1111LL | #![deny(rustdoc::bare_urls)]
1212 | ^^^^^^^^^^^^^^^^^^
13+ help: use an automatic link instead
14+ |
15+ LL | /// <https://somewhere.com>
16+ | + +
1317
1418error: this URL is not a hyperlink
1519 --> $DIR/bare-urls.rs:7:5
1620 |
1721LL | /// https://somewhere.com/a
18- | ^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a>`
22+ | ^^^^^^^^^^^^^^^^^^^^^^^
1923 |
2024 = note: bare URLs are not automatically turned into clickable links
25+ help: use an automatic link instead
26+ |
27+ LL | /// <https://somewhere.com/a>
28+ | + +
2129
2230error: this URL is not a hyperlink
2331 --> $DIR/bare-urls.rs:9:5
2432 |
2533LL | /// https://www.somewhere.com
26- | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://www.somewhere.com>`
34+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
2735 |
2836 = note: bare URLs are not automatically turned into clickable links
37+ help: use an automatic link instead
38+ |
39+ LL | /// <https://www.somewhere.com>
40+ | + +
2941
3042error: this URL is not a hyperlink
3143 --> $DIR/bare-urls.rs:11:5
3244 |
3345LL | /// https://www.somewhere.com/a
34- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://www.somewhere.com/a>`
46+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
3547 |
3648 = note: bare URLs are not automatically turned into clickable links
49+ help: use an automatic link instead
50+ |
51+ LL | /// <https://www.somewhere.com/a>
52+ | + +
3753
3854error: this URL is not a hyperlink
3955 --> $DIR/bare-urls.rs:13:5
4056 |
4157LL | /// https://subdomain.example.com
42- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://subdomain.example.com>`
58+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4359 |
4460 = note: bare URLs are not automatically turned into clickable links
61+ help: use an automatic link instead
62+ |
63+ LL | /// <https://subdomain.example.com>
64+ | + +
4565
4666error: this URL is not a hyperlink
4767 --> $DIR/bare-urls.rs:15:5
4868 |
4969LL | /// https://somewhere.com?
50- | ^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?>`
70+ | ^^^^^^^^^^^^^^^^^^^^^^
5171 |
5272 = note: bare URLs are not automatically turned into clickable links
73+ help: use an automatic link instead
74+ |
75+ LL | /// <https://somewhere.com?>
76+ | + +
5377
5478error: this URL is not a hyperlink
5579 --> $DIR/bare-urls.rs:17:5
5680 |
5781LL | /// https://somewhere.com/a?
58- | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?>`
82+ | ^^^^^^^^^^^^^^^^^^^^^^^^
5983 |
6084 = note: bare URLs are not automatically turned into clickable links
85+ help: use an automatic link instead
86+ |
87+ LL | /// <https://somewhere.com/a?>
88+ | + +
6189
6290error: this URL is not a hyperlink
6391 --> $DIR/bare-urls.rs:19:5
6492 |
6593LL | /// https://somewhere.com?hello=12
66- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12>`
94+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6795 |
6896 = note: bare URLs are not automatically turned into clickable links
97+ help: use an automatic link instead
98+ |
99+ LL | /// <https://somewhere.com?hello=12>
100+ | + +
69101
70102error: this URL is not a hyperlink
71103 --> $DIR/bare-urls.rs:21:5
72104 |
73105LL | /// https://somewhere.com/a?hello=12
74- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12>`
106+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
75107 |
76108 = note: bare URLs are not automatically turned into clickable links
109+ help: use an automatic link instead
110+ |
111+ LL | /// <https://somewhere.com/a?hello=12>
112+ | + +
77113
78114error: this URL is not a hyperlink
79115 --> $DIR/bare-urls.rs:23:5
80116 |
81117LL | /// https://example.com?hello=12#xyz
82- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com?hello=12#xyz>`
118+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
83119 |
84120 = note: bare URLs are not automatically turned into clickable links
121+ help: use an automatic link instead
122+ |
123+ LL | /// <https://example.com?hello=12#xyz>
124+ | + +
85125
86126error: this URL is not a hyperlink
87127 --> $DIR/bare-urls.rs:25:5
88128 |
89129LL | /// https://example.com/a?hello=12#xyz
90- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com/a?hello=12#xyz>`
130+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
91131 |
92132 = note: bare URLs are not automatically turned into clickable links
133+ help: use an automatic link instead
134+ |
135+ LL | /// <https://example.com/a?hello=12#xyz>
136+ | + +
93137
94138error: this URL is not a hyperlink
95139 --> $DIR/bare-urls.rs:27:5
96140 |
97141LL | /// https://example.com#xyz
98- | ^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com#xyz>`
142+ | ^^^^^^^^^^^^^^^^^^^^^^^
99143 |
100144 = note: bare URLs are not automatically turned into clickable links
145+ help: use an automatic link instead
146+ |
147+ LL | /// <https://example.com#xyz>
148+ | + +
101149
102150error: this URL is not a hyperlink
103151 --> $DIR/bare-urls.rs:29:5
104152 |
105153LL | /// https://example.com/a#xyz
106- | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com/a#xyz>`
154+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
107155 |
108156 = note: bare URLs are not automatically turned into clickable links
157+ help: use an automatic link instead
158+ |
159+ LL | /// <https://example.com/a#xyz>
160+ | + +
109161
110162error: this URL is not a hyperlink
111163 --> $DIR/bare-urls.rs:31:5
112164 |
113165LL | /// https://somewhere.com?hello=12&bye=11
114- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12&bye=11>`
166+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
115167 |
116168 = note: bare URLs are not automatically turned into clickable links
169+ help: use an automatic link instead
170+ |
171+ LL | /// <https://somewhere.com?hello=12&bye=11>
172+ | + +
117173
118174error: this URL is not a hyperlink
119175 --> $DIR/bare-urls.rs:33:5
120176 |
121177LL | /// https://somewhere.com/a?hello=12&bye=11
122- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12&bye=11>`
178+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
123179 |
124180 = note: bare URLs are not automatically turned into clickable links
181+ help: use an automatic link instead
182+ |
183+ LL | /// <https://somewhere.com/a?hello=12&bye=11>
184+ | + +
125185
126186error: this URL is not a hyperlink
127187 --> $DIR/bare-urls.rs:35:5
128188 |
129189LL | /// https://somewhere.com?hello=12&bye=11#xyz
130- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12&bye=11#xyz>`
190+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
131191 |
132192 = note: bare URLs are not automatically turned into clickable links
193+ help: use an automatic link instead
194+ |
195+ LL | /// <https://somewhere.com?hello=12&bye=11#xyz>
196+ | + +
133197
134198error: this URL is not a hyperlink
135199 --> $DIR/bare-urls.rs:37:10
136200 |
137201LL | /// hey! https://somewhere.com/a?hello=12&bye=11#xyz
138- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12&bye=11#xyz>`
202+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
139203 |
140204 = note: bare URLs are not automatically turned into clickable links
205+ help: use an automatic link instead
206+ |
207+ LL | /// hey! <https://somewhere.com/a?hello=12&bye=11#xyz>
208+ | + +
141209
142210error: aborting due to 17 previous errors
143211
0 commit comments