From 89be9bb3c3e4c359e35258018725c111e1c051b9 Mon Sep 17 00:00:00 2001 From: Richel Bilderbeek Date: Fri, 23 Jun 2017 14:06:25 +0200 Subject: [PATCH] Simple typo --- 03-Style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-Style.md b/03-Style.md index 3c0a3db..519ada3 100644 --- a/03-Style.md +++ b/03-Style.md @@ -348,7 +348,7 @@ In general, using `auto` will avoid most of these issues, but not all. Make sure you stick with the correct integer types and remain consistent with the C++ standard library. It might not warn on the platform you are currently using, but it probably will when you change platforms. -*Note that you can cause integer underflow when peforming some operations on unsigned values. For example:* +*Note that you can cause integer underflow when performing some operations on unsigned values. For example:* ```cpp std::vector v1{2,3,4,5,6,7,8,9};