From b370731cc9c6e9fd1616780026fb70e54442c99a Mon Sep 17 00:00:00 2001 From: Jordan Neidlinger Date: Wed, 23 Sep 2015 13:25:25 -0700 Subject: [PATCH] [Typo] Fix typo in function argument passing rule 21 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f28366f..07215b9 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2128,7 +2128,7 @@ Suggest using a `const` reference instead. ### F.21: Use a `T` parameter for a small object **Reason**: Nothing beats the simplicity and safety of copying. -For small objects (up to two or three words) is is also faster than alternatives. +For small objects (up to two or three words) it is also faster than alternatives. **Example**: