From 12ec9d63cb7dfe4d4fa70af956fa6cd7036dfac5 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Tue, 4 Sep 2018 09:03:24 -0600 Subject: [PATCH] Update 05-Considering_Maintainability.md --- 05-Considering_Maintainability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-Considering_Maintainability.md b/05-Considering_Maintainability.md index 2844116..f6d8eec 100644 --- a/05-Considering_Maintainability.md +++ b/05-Considering_Maintainability.md @@ -42,7 +42,7 @@ assert(set_value(something)); assert(success); ``` -The `assert()` will be removed in release builds which will prevent the `set_value` call from every happening. +The `assert()` will be removed in release builds which will prevent the `set_value` call from ever happening. So while the second version is uglier, the first version is simply not correct.