From 40b55e78bda6adbee7377d7f71e1a95e7cc6dfb5 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 6 Sep 2023 08:42:13 +0200 Subject: [PATCH] specify which integer overflows we mean --- 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 64694ee4..cd3d1c18 100644 --- a/src/what-unsafe-does.md +++ b/src/what-unsafe-does.md @@ -72,7 +72,7 @@ Rust considers it "safe" to: * Have a [race condition][race] * Leak memory * Fail to call destructors -* Overflow integers +* Overflow integers (with the built-in operators such as `+` etc.) * Abort the program * Delete the production database