From aabfe119d3c26bec3962ca8c29b9f19003dacc23 Mon Sep 17 00:00:00 2001 From: Bjarne Stroustrup Date: Fri, 19 May 2017 18:05:17 -0400 Subject: [PATCH] typo fix --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f666e40..cd4b446 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1,6 +1,6 @@ # C++ Core Guidelines -May 18, 2017 +May 19, 2017 Editors: @@ -9314,7 +9314,7 @@ Arithmetic rules: * [ES.103: Don't overflow](#Res-overflow) * [ES.104: Don't underflow](#Res-underflow) * [ES.105: Don't divide by zero](#Res-zero) -* [ES.106: Don't try t avoid negative values by using `unsigned`](#Res-nonnegative) +* [ES.106: Don't try to avoid negative values by using `unsigned`](#Res-nonnegative) * [ES.107: Don't use `unsigned` for subscripts](#Res-subscripts) ### ES.1: Prefer the standard library to other libraries and to "handcrafted code"