diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2021-07-30 00:58:48 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-30 00:58:48 -0700 |
| commit | c2a365d3d4b5c067adfe8462a749e0c40746617a (patch) | |
| tree | 9b2fe2b1ee7ce6f3cafbeebbcfc56ce742708749 | |
| parent | fe1c942eee3489743d655d81ca89166217db0547 (diff) | |
| download | rust-c2a365d3d4b5c067adfe8462a749e0c40746617a.tar.gz rust-c2a365d3d4b5c067adfe8462a749e0c40746617a.zip | |
Fix missing word in comment
| -rw-r--r-- | src/doc/rustdoc/src/command-line-arguments.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustdoc/src/command-line-arguments.md b/src/doc/rustdoc/src/command-line-arguments.md index c8af369a969..d6948622662 100644 --- a/src/doc/rustdoc/src/command-line-arguments.md +++ b/src/doc/rustdoc/src/command-line-arguments.md @@ -94,7 +94,7 @@ $ rustdoc src/lib.rs --document-private-items By default, `rustdoc` only documents items that are publicly reachable. ```rust -pub fn public() {} // this item is public and will documented +pub fn public() {} // this item is public and will be documented mod private { // this item is private and will not be documented pub fn unreachable() {} // this item is public, but unreachable, so it will not be documented } |
