Skip to content

Commit a4b1361

Browse files
committed
Fixed Result type parameters in doc comment.
1 parent 36d7d74 commit a4b1361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/result.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! Error handling with the `Result` type
1212
//!
13-
//! `Result<T>` is the type used for returning and propagating
13+
//! `Result<T, E>` is the type used for returning and propagating
1414
//! errors. It is an enum with the variants, `Ok(T)`, representing
1515
//! success and containing a value, and `Err(E)`, representing error
1616
//! and containing an error value.

0 commit comments

Comments
 (0)