From aab97d9e48b79bd7f093390da006c991fde81010 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Wed, 5 Oct 2016 13:00:44 +0100 Subject: [PATCH] C.32 Fix typo, "aide" -> "aid" --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 222653b..c3030cf 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4185,7 +4185,7 @@ There is a lot of code that is non-specific about ownership. ##### Note If the `T*` or `T&` is owning, mark it `owning`. If the `T*` is not owning, consider marking it `ptr`. -This will aide documentation and analysis. +This will aid documentation and analysis. ##### Enforcement