From 04823fd22bf954ffb5d705aba5733c01e85423f7 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 9 Sep 2019 18:54:24 +0200 Subject: [PATCH] use agreed-upon wording --- 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 23aa82f..2caf62e 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][] -* Calling a function with the wrong call ABI or wrong unwind ABI. +* Calling a function with the wrong call ABI or unwinding from a function 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