From c6bf198f75127d862e15cb711c5549844765bb27 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Tue, 27 Aug 2019 12:51:53 +0200 Subject: [PATCH] adjust fn unwinding clause to match reference --- src/what-unsafe-does.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/what-unsafe-does.md b/src/what-unsafe-does.md index b369509..093d69f 100644 --- a/src/what-unsafe-does.md +++ b/src/what-unsafe-does.md @@ -18,7 +18,7 @@ language cares about is preventing the following things: * Dereferencing (using the `*` operator on) dangling or unaligned pointers (see below) * Breaking the [pointer aliasing rules][] -* Unwinding into another language +* Calling a function with the wrong call ABI (in particular, with the wrong unwind ABI). * Causing a [data race][race] * Executing code compiled with [target features][] that the current thread of execution does not support