Fixed item typo which did not need prefix

This commit is contained in:
Spencer Imbleau 2021-05-16 12:58:52 -04:00 committed by GitHub
parent d7884d4b08
commit 8a7bb2bb66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,7 +112,7 @@ This lint is **allowed by default**. It detects items missing documentation.
For example:
```rust
#![warn(rustdoc::missing_docs)]
#![warn(missing_docs)]
pub fn undocumented() {}
# fn main() {}