From 4af8321e91c58e3a6a1668b4eaa816089a9f7311 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 15 May 2018 15:25:23 +0100 Subject: [PATCH] Fix "an reasonable" typo Fixes #1211 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7203867..71da7c9 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8753,7 +8753,7 @@ Use `zstring` rather than `char*` to indicate that you rely on that convention. ##### Note Many current uses of pointers to a single element could be references. -However, where `nullptr` is a possible value, a reference may not be an reasonable alternative. +However, where `nullptr` is a possible value, a reference may not be a reasonable alternative. ##### Enforcement