Skip to content

Commit b00f4ec

Browse files
committed
auto merge of #15414 : zsiciarz/rust/patch-1, r=alexcrichton
2 parents d611800 + a4b1361 commit b00f4ec

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)