@@ -9,102 +9,135 @@ note: the lint level is defined here
9
9
|
10
10
LL | #![deny(rustdoc::bare_urls)]
11
11
| ^^^^^^^^^^^^^^^^^^
12
+ = note: bare URLs are not automatically turned into clickable links
12
13
13
14
error: this URL is not a hyperlink
14
15
--> $DIR/bare-urls.rs:7:5
15
16
|
16
17
LL | /// https://somewhere.com/a
17
18
| ^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a>`
19
+ |
20
+ = note: bare URLs are not automatically turned into clickable links
18
21
19
22
error: this URL is not a hyperlink
20
23
--> $DIR/bare-urls.rs:9:5
21
24
|
22
25
LL | /// https://www.somewhere.com
23
26
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://www.somewhere.com>`
27
+ |
28
+ = note: bare URLs are not automatically turned into clickable links
24
29
25
30
error: this URL is not a hyperlink
26
31
--> $DIR/bare-urls.rs:11:5
27
32
|
28
33
LL | /// https://www.somewhere.com/a
29
34
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://www.somewhere.com/a>`
35
+ |
36
+ = note: bare URLs are not automatically turned into clickable links
30
37
31
38
error: this URL is not a hyperlink
32
39
--> $DIR/bare-urls.rs:13:5
33
40
|
34
41
LL | /// https://subdomain.example.com
35
42
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://subdomain.example.com>`
43
+ |
44
+ = note: bare URLs are not automatically turned into clickable links
36
45
37
46
error: this URL is not a hyperlink
38
47
--> $DIR/bare-urls.rs:15:5
39
48
|
40
49
LL | /// https://somewhere.com?
41
50
| ^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?>`
51
+ |
52
+ = note: bare URLs are not automatically turned into clickable links
42
53
43
54
error: this URL is not a hyperlink
44
55
--> $DIR/bare-urls.rs:17:5
45
56
|
46
57
LL | /// https://somewhere.com/a?
47
58
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?>`
59
+ |
60
+ = note: bare URLs are not automatically turned into clickable links
48
61
49
62
error: this URL is not a hyperlink
50
63
--> $DIR/bare-urls.rs:19:5
51
64
|
52
65
LL | /// https://somewhere.com?hello=12
53
66
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12>`
67
+ |
68
+ = note: bare URLs are not automatically turned into clickable links
54
69
55
70
error: this URL is not a hyperlink
56
71
--> $DIR/bare-urls.rs:21:5
57
72
|
58
73
LL | /// https://somewhere.com/a?hello=12
59
74
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12>`
75
+ |
76
+ = note: bare URLs are not automatically turned into clickable links
60
77
61
78
error: this URL is not a hyperlink
62
79
--> $DIR/bare-urls.rs:23:5
63
80
|
64
81
LL | /// https://example.com?hello=12#xyz
65
82
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com?hello=12#xyz>`
83
+ |
84
+ = note: bare URLs are not automatically turned into clickable links
66
85
67
86
error: this URL is not a hyperlink
68
87
--> $DIR/bare-urls.rs:25:5
69
88
|
70
89
LL | /// https://example.com/a?hello=12#xyz
71
90
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com/a?hello=12#xyz>`
91
+ |
92
+ = note: bare URLs are not automatically turned into clickable links
72
93
73
94
error: this URL is not a hyperlink
74
95
--> $DIR/bare-urls.rs:27:5
75
96
|
76
97
LL | /// https://example.com#xyz
77
98
| ^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com#xyz>`
99
+ |
100
+ = note: bare URLs are not automatically turned into clickable links
78
101
79
102
error: this URL is not a hyperlink
80
103
--> $DIR/bare-urls.rs:29:5
81
104
|
82
105
LL | /// https://example.com/a#xyz
83
106
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com/a#xyz>`
107
+ |
108
+ = note: bare URLs are not automatically turned into clickable links
84
109
85
110
error: this URL is not a hyperlink
86
111
--> $DIR/bare-urls.rs:31:5
87
112
|
88
113
LL | /// https://somewhere.com?hello=12&bye=11
89
114
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12&bye=11>`
115
+ |
116
+ = note: bare URLs are not automatically turned into clickable links
90
117
91
118
error: this URL is not a hyperlink
92
119
--> $DIR/bare-urls.rs:33:5
93
120
|
94
121
LL | /// https://somewhere.com/a?hello=12&bye=11
95
122
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12&bye=11>`
123
+ |
124
+ = note: bare URLs are not automatically turned into clickable links
96
125
97
126
error: this URL is not a hyperlink
98
127
--> $DIR/bare-urls.rs:35:5
99
128
|
100
129
LL | /// https://somewhere.com?hello=12&bye=11#xyz
101
130
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12&bye=11#xyz>`
131
+ |
132
+ = note: bare URLs are not automatically turned into clickable links
102
133
103
134
error: this URL is not a hyperlink
104
135
--> $DIR/bare-urls.rs:37:10
105
136
|
106
137
LL | /// hey! https://somewhere.com/a?hello=12&bye=11#xyz
107
138
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12&bye=11#xyz>`
139
+ |
140
+ = note: bare URLs are not automatically turned into clickable links
108
141
109
142
error: aborting due to 17 previous errors
110
143
0 commit comments