We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c3261a commit 4280b36Copy full SHA for 4280b36
compiler/rustc_mir_transform/src/ffi_unwind_calls.rs
@@ -12,7 +12,7 @@ use crate::errors;
12
13
/// Some of the functions declard as "may unwind" by `fn_can_unwind` can't actually unwind. In
14
/// particular, `extern "C"` is still considered as can-unwind on stable, but we need to to consider
15
-/// it cannot-unwind here. So below we check `fn_can_unwind() && abi_can_unwind()` before cincluding
+/// it cannot-unwind here. So below we check `fn_can_unwind() && abi_can_unwind()` before concluding
16
/// that a function call can unwind.
17
fn abi_can_unwind(abi: Abi) -> bool {
18
use Abi::*;
0 commit comments