We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e68611 commit c7d9509Copy full SHA for c7d9509
library/core/src/intrinsics.rs
@@ -2662,9 +2662,9 @@ extern "rust-intrinsic" {
2662
pub fn discriminant_value<T>(v: &T) -> <T as DiscriminantKind>::Discriminant;
2663
2664
/// Rust's "try catch" construct for unwinding. Invokes the function pointer `try_fn` with the
2665
- /// 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
2666
/// undefined behavior to catch an unwinding operation from another language with this
2667
- /// function.)
+ /// function.
2668
///
2669
/// `catch_fn` must not unwind.
2670
0 commit comments