From d7f7ca5ab42a650822444467c99f753592482691 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Mon, 28 Sep 2015 10:23:19 -0700 Subject: [PATCH] Fix typo. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index fb94419..49a6699 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2062,7 +2062,7 @@ When I call `length(s)` should I test for `s==nullptr` first? Should the impleme **Exception**: Sinks (that is, a function that eventually destroys an object or passes it along to another sink), may benefit ??? **Note**: A reference may be assumed to refer to a valid object (language rule). -There in no (legitimate) "null reference." +There is no (legitimate) "null reference." If you need the notion of an optional value, use a pointer, `std::optional`, or a special value used to denote "no value." **Enforcement**: