Skip to content

Commit 8be35b2

Browse files
CreepySkeletonGankra
authored andcommitted
Update unwinding.md
`catch_unwind` is not unstable anymore
1 parent f2f2e4b commit 8be35b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unwinding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ panics can only be caught by the parent thread. This means catching a panic
3131
requires spinning up an entire OS thread! This unfortunately stands in conflict
3232
to Rust's philosophy of zero-cost abstractions.
3333

34-
There is an unstable API called `catch_panic` that enables catching a panic
34+
There is an API called `catch_panic` that enables catching a panic
3535
without spawning a thread. Still, we would encourage you to only do this
3636
sparingly. In particular, Rust's current unwinding implementation is heavily
3737
optimized for the "doesn't unwind" case. If a program doesn't unwind, there

0 commit comments

Comments
 (0)