Skip to content

Commit c6bf198

Browse files
committed
adjust fn unwinding clause to match reference
1 parent 5287c52 commit c6bf198

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/what-unsafe-does.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ language cares about is preventing the following things:
1818

1919
* Dereferencing (using the `*` operator on) dangling or unaligned pointers (see below)
2020
* Breaking the [pointer aliasing rules][]
21-
* Unwinding into another language
21+
* Calling a function with the wrong call ABI (in particular, with the wrong unwind ABI).
2222
* Causing a [data race][race]
2323
* Executing code compiled with [target features][] that the current thread of execution does
2424
not support

0 commit comments

Comments
 (0)