Improve doc for Result::unwrap()

This commit is contained in:
York Xiang 2015-04-20 00:07:23 +08:00
parent b08d6cf529
commit c3c761058c

View file

@ -727,8 +727,8 @@ impl<T, E: fmt::Debug> Result<T, E> {
///
/// # Panics
///
/// Panics if the value is an `Err`, with a custom panic message provided
/// by the `Err`'s value.
/// Panics if the value is an `Err`, with a panic message provided by the
/// `Err`'s value.
///
/// # Examples
///