mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-05 19:43:24 +00:00
Fix issue with rt::unwind::try() docs
This is now a Result, not an Option.
This commit is contained in:
parent
3b2ed14906
commit
d992d3d9f3
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user