From 0aa08c2bd9fe7d85819cdba3e29534704c12c2b5 Mon Sep 17 00:00:00 2001 From: Bader Youssef Date: Wed, 22 Nov 2023 13:31:04 -0500 Subject: [PATCH] wording --- developer-hub/src/reference_docs/defensive_programming.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/developer-hub/src/reference_docs/defensive_programming.rs b/developer-hub/src/reference_docs/defensive_programming.rs index 4f9fc9bdec72..7f186b89e714 100644 --- a/developer-hub/src/reference_docs/defensive_programming.rs +++ b/developer-hub/src/reference_docs/defensive_programming.rs @@ -74,8 +74,7 @@ //! naive_add(250u8, 10u8); // In debug mode, this would panic. In release, this would return 4. //! ``` //! -//! It is actually the _silent_ portion of this behavior that presents a real issue - as it may be -//! an unintended in terms of producing bugs. Such behavior should be made obvious. Especially in +//! It is actually the _silent_ portion of this behavior that presents a real issue. Such behavior should be made obvious, especially in //! the context of blockchain development, where unsafe arithmetic could produce unexpected //! consequences. //!