We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf703da commit 4b53354Copy full SHA for 4b53354
library/core/src/intrinsics.rs
@@ -2373,9 +2373,9 @@ extern "rust-intrinsic" {
2373
pub fn discriminant_value<T>(v: &T) -> <T as DiscriminantKind>::Discriminant;
2374
2375
/// Rust's "try catch" construct for unwinding. Invokes the function pointer `try_fn` with the
2376
- /// data pointer `data`, and calls `catch_fn` if a panic occurs while `try_fn` runs. (It is
+ /// data pointer `data`, and calls `catch_fn` if a panic occurs while `try_fn` runs. It is
2377
/// undefined behavior to catch an unwinding operation from another language with this
2378
- /// function.)
+ /// function.
2379
///
2380
/// `catch_fn` must not unwind.
2381
0 commit comments