From 4bea8b457313ab3d90bda38dabb29cda3a0936bc Mon Sep 17 00:00:00 2001 From: Johannes Laire Date: Tue, 29 Sep 2015 08:36:37 +0200 Subject: [PATCH] Fix typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3c5f941..711f8d3 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -712,7 +712,7 @@ If all we had was a typo so that we meant to use `n` as the bound, the code coul // ... } -The date is validated twice (by the `Date` constructor) and passed as an character string (unstructured data). +The date is validated twice (by the `Date` constructor) and passed as a character string (unstructured data). **Example**: Excess checking can be costly. There are cases where checking early is dumb because you may not ever need the value,