diff options
| -rw-r--r-- | src/doc/trpl/documentation.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/documentation.md b/src/doc/trpl/documentation.md index b9de4110a66..abd09a67803 100644 --- a/src/doc/trpl/documentation.md +++ b/src/doc/trpl/documentation.md @@ -548,8 +548,8 @@ pub use foo::bar; ## Missing documentation -Sometimes you want to make sure that every single thing in your project is -documented, especially when you are working on a library. Rust allows you to +Sometimes you want to make sure that every single public thing in your project +is documented, especially when you are working on a library. Rust allows you to to generate warnings or errors, when an item is missing documentation. To generate warnings you use `warn`: |
