From 11d28dfeff825f7f0eabe181922b4bb407c3efc6 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Wed, 23 Sep 2015 09:53:22 -0700 Subject: [PATCH] Fix grammar. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f28366f..6160d10 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1368,7 +1368,7 @@ Note: `length()` is, of course, `std::strlen()` in disguise. ### I.13: Do not pass an array as a single pointer -**Reason**: (pointer,size)-style interfaces are error-prone. Also, plain pointer (to array) must relies on some convention to allow the callee to determine the size. +**Reason**: (pointer,size)-style interfaces are error-prone. Also, a plain pointer (to array) must rely on some convention to allow the callee to determine the size. **Example**: Consider