Skip to content

Commit 6596270

Browse files
committed
fix what-to-include doc example
Fixes the second example in the Examples section of what-to-include.md by marking main as a function.
1 parent 1c05d50 commit 6596270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/rustdoc/src/write-documentation/what-to-include.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ and your test suite, this example needs some additional code:
7373
``````text
7474
/// Example
7575
/// ```rust
76-
/// # main() -> Result<(), std::num::ParseIntError> {
76+
/// # fn main() -> Result<(), std::num::ParseIntError> {
7777
/// let fortytwo = "42".parse::<u32>()?;
7878
/// println!("{} + 10 = {}", fortytwo, fortytwo+10);
7979
/// # Ok(())

0 commit comments

Comments
 (0)