From 882e9539fa6e2098479a6e45ddbf00441de79a0e Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Tue, 26 Feb 2019 17:30:30 -0500 Subject: [PATCH] Fix grammar in ES.42 (#1346) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f4be493..30e2d77 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11317,7 +11317,7 @@ Use a `span`: a[pos - 1] = 2; // OK } -Use a `at()`: +Use `at()`: void f3(array a, int pos) // ALTERNATIVE B: Use at() for access {