Add documentation for private_intra_doc_links
This commit is contained in:
parent
03d8be0896
commit
80ffaed809
2 changed files with 41 additions and 1 deletions
|
@ -1831,7 +1831,7 @@ declare_lint! {
|
||||||
/// a public item to a private one. This is a `rustdoc` only lint, see the
|
/// a public item to a private one. This is a `rustdoc` only lint, see the
|
||||||
/// documentation in the [rustdoc book].
|
/// documentation in the [rustdoc book].
|
||||||
///
|
///
|
||||||
/// [rustdoc book]: ../../../rustdoc/lints.html#broken_intra_doc_links
|
/// [rustdoc book]: ../../../rustdoc/lints.html#private_intra_doc_links
|
||||||
pub PRIVATE_INTRA_DOC_LINKS,
|
pub PRIVATE_INTRA_DOC_LINKS,
|
||||||
Warn,
|
Warn,
|
||||||
"linking from a public item to a private one"
|
"linking from a public item to a private one"
|
||||||
|
|
|
@ -62,6 +62,46 @@ help: to link to the function, add parentheses
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## private_intra_doc_links
|
||||||
|
|
||||||
|
This lint **warns by default**. This lint detects when [intra-doc links] from public to private items.
|
||||||
|
For example:
|
||||||
|
|
||||||
|
```rust
|
||||||
|
/// [private]
|
||||||
|
pub fn public() {}
|
||||||
|
fn private() {}
|
||||||
|
```
|
||||||
|
|
||||||
|
This gives a warning that the link will be broken when it appears in your documentation:
|
||||||
|
|
||||||
|
```text
|
||||||
|
warning: public documentation for `public` links to private item `private`
|
||||||
|
--> priv.rs:1:6
|
||||||
|
|
|
||||||
|
1 | /// [private]
|
||||||
|
| ^^^^^^^ this item is private
|
||||||
|
|
|
||||||
|
= note: `#[warn(private_intra_doc_links)]` on by default
|
||||||
|
= note: this link will resolve properly if you pass `--document-private-items`
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that this has different behavior depending on whether you pass `--document-private-items` or not!
|
||||||
|
If you document private items, then it will still generate a link, despite the warning:
|
||||||
|
|
||||||
|
```text
|
||||||
|
warning: public documentation for `public` links to private item `private`
|
||||||
|
--> priv.rs:1:6
|
||||||
|
|
|
||||||
|
1 | /// [private]
|
||||||
|
| ^^^^^^^ this item is private
|
||||||
|
|
|
||||||
|
= note: `#[warn(private_intra_doc_links)]` on by default
|
||||||
|
= note: this link resolves only because you passed `--document-private-items`, but will break without
|
||||||
|
```
|
||||||
|
|
||||||
|
[intra-doc links]: linking-to-items-by-name.html
|
||||||
|
|
||||||
## missing_docs
|
## missing_docs
|
||||||
|
|
||||||
This lint is **allowed by default**. It detects items missing documentation.
|
This lint is **allowed by default**. It detects items missing documentation.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue