Rollup merge of #21924 - steveklabnik:fix_try_docs, r=huonw

This is now a Result, not an Option.
This commit is contained in:
Manish Goregaokar 2015-02-06 05:38:37 +05:30
commit 60cb151be0

View File

@ -98,8 +98,8 @@ thread_local! { static PANICKING: Cell<bool> = Cell::new(false) }
/// Invoke a closure, capturing the cause of panic if one occurs.
///
/// This function will return `None` if the closure did not panic, and will
/// return `Some(cause)` if the closure panics. The `cause` returned is the
/// This function will return `Ok(())` if the closure did not panic, and will
/// return `Err(cause)` if the closure panics. The `cause` returned is the
/// object with which panic was originally invoked.
///
/// This function also is unsafe for a variety of reasons: