Commit bbde817
docs: clean rustdoc — fix 5 unresolved intra-doc links
`cargo doc --no-deps` was generating 5 warnings:
- `[`File`]` in src/area.rs:99 — File is std::fs::File but
the bare name doesn't resolve from this scope. Fully
qualified.
- `[`&std::fs::File`]` and `[`&tempfile::NamedTempFile`]` in
bytes.rs:233 + bytes.rs:255 — intra-doc links can't target
reference types. Stripped the `&` prefix; both targets
resolve via the dependency tree (memmap2 + tempfile both
in Cargo.toml).
`cargo doc --no-deps` now warning-free.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent bb390a7 commit bbde817
2 files changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
96 | 96 | | |
97 | 97 | | |
98 | 98 | | |
99 | | - | |
| 99 | + | |
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
230 | 230 | | |
231 | 231 | | |
232 | 232 | | |
233 | | - | |
| 233 | + | |
234 | 234 | | |
235 | 235 | | |
236 | 236 | | |
| |||
252 | 252 | | |
253 | 253 | | |
254 | 254 | | |
255 | | - | |
| 255 | + | |
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
| |||
0 commit comments