From f6f1a49a416bca0ea40c813534fc22f9c276f78b Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Sun, 24 Jan 2021 22:32:35 -0500 Subject: [PATCH] typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b5102c2..604694b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9981,7 +9981,7 @@ Not easy. ??? Look for messy loops, nested loops, long functions, absence of fun Duplicated or otherwise redundant code obscures intent, makes it harder to understand the logic, and makes maintenance harder, among other problems. It often arises from cut-and-paste programming. -Use standard algorithms where apropriate, instead of writing some own implementation. +Use standard algorithms where appropriate, instead of writing some own implementation. **See also**: [SL.1](#Rsl-lib), [ES.11](#Res-auto)