about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-05 06:46:47 +0000
committerbors <bors@rust-lang.org>2014-07-05 06:46:47 +0000
commitb00f4ec8f17e7007c9032114c5b0d0d50ab18522 (patch)
tree58d50e27d95b5eff63087ad89cb7cd7bef326136
parentd611800a70e6f620b5f96d8509899377a784b364 (diff)
parenta4b1361a0102d4bc0f473b560d62819f28cf4c4b (diff)
downloadrust-b00f4ec8f17e7007c9032114c5b0d0d50ab18522.tar.gz
rust-b00f4ec8f17e7007c9032114c5b0d0d50ab18522.zip
auto merge of #15414 : zsiciarz/rust/patch-1, r=alexcrichton
-rw-r--r--src/libcore/result.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/result.rs b/src/libcore/result.rs
index 5cbbf30cd36..32e1d570be3 100644
--- a/src/libcore/result.rs
+++ b/src/libcore/result.rs
@@ -10,7 +10,7 @@
 
 //! Error handling with the `Result` type
 //!
-//! `Result<T>` is the type used for returning and propagating
+//! `Result<T, E>` is the type used for returning and propagating
 //! errors. It is an enum with the variants, `Ok(T)`, representing
 //! success and containing a value, and `Err(E)`, representing error
 //! and containing an error value.