From e508837f420a9cf1c269137220bf17b5f6885f48 Mon Sep 17 00:00:00 2001 From: Evan Teran Date: Sat, 26 Sep 2015 00:05:15 -0400 Subject: [PATCH] Correcting minor typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5c16297..7bb8bd5 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4557,7 +4557,7 @@ The alternative is to make two failure states compare equal and any valid state // ... }; -// `B`'s comparison accpts conversions for its second operand, but not its first. +// `B`'s comparison accepts conversions for its second operand, but not its first. class D :B { char character;