Commit 0fc0a94
authored
docs: fix broken intradoc links (#162)
address warnings like the following, when docs are built using the
current stable release:
```
Documenting http-body-util v0.1.3 (/http-body/http-body/http-body-util)
error: unresolved link to `Poll::Ready(None)`
--> http-body-util/src/combinators/fuse.rs:10:28
|
10 | /// This [`Body`] yields [`Poll::Ready(None)`] forever after the underlying body yields
| ^^^^^^^^^^^^^^^^^ the enum `Poll` has no variant or associated item named `Ready(None)`
|
= note: requested on the command line with `-D rustdoc::broken-intra-doc-links`
error: unresolved link to `Poll::Ready(Some(Ok(frame)))`
--> http-body/src/lib.rs:53:13
|
53 | /// - [`Poll::Ready(Some(Ok(frame)))`] when the next frame is available.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the enum `Poll` has no variant or associated item named `Ready(Some(Ok(frame)))`
|
= note: requested on the command line with `-D rustdoc::broken-intra-doc-links`
```
Signed-off-by: katelyn martin <[email protected]>1 parent 5a849d4 commit 0fc0a94
3 files changed
+11
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
11 | | - | |
| 10 | + | |
| 11 | + | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
157 | | - | |
158 | | - | |
| 157 | + | |
| 158 | + | |
159 | 159 | | |
160 | 160 | | |
161 | 161 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | | - | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| |||
0 commit comments