diff --git a/developer-hub/src/reference_docs/safe_defensive_programming.rs b/developer-hub/src/reference_docs/safe_defensive_programming.rs index 09fdf508dcfe..46db2971d200 100644 --- a/developer-hub/src/reference_docs/safe_defensive_programming.rs +++ b/developer-hub/src/reference_docs/safe_defensive_programming.rs @@ -273,7 +273,7 @@ //! Solution: Saturating //! For Alice's balance problem, using `saturated_sub` could've mitigated this issue. As debt or //! having a negative balance is not a concept within blockchains, a saturating calculation -//! would've simply limited her balance to the lower bound of u32. +//! would've simply limited her balance to the lower bound of u32. //! //! In other words: Alice's balance would've stayed at "0", even after being slashed. //!