Skip to content

Doc backport #24814

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Apr 25, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve doc for Result::unwrap()
  • Loading branch information
bombless authored and steveklabnik committed Apr 25, 2015
commit 44c5aa534cda7e945619c2d73daa8800e563c60e
4 changes: 2 additions & 2 deletions src/libcore/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -706,8 +706,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
///
Expand Down