Skip to content

Commit 8d5291c

Browse files
authored
Rollup merge of #87616 - Wilfred:patch-1, r=jyn514
Fix missing word in rustdoc book
2 parents f4dfb76 + c2a365d commit 8d5291c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/rustdoc/src/command-line-arguments.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $ rustdoc src/lib.rs --document-private-items
9494
By default, `rustdoc` only documents items that are publicly reachable.
9595

9696
```rust
97-
pub fn public() {} // this item is public and will documented
97+
pub fn public() {} // this item is public and will be documented
9898
mod private { // this item is private and will not be documented
9999
pub fn unreachable() {} // this item is public, but unreachable, so it will not be documented
100100
}

0 commit comments

Comments
 (0)