From d86a82f1ebffe34e66ab20dd7fa27f36d4f73b0e Mon Sep 17 00:00:00 2001 From: Jan Nils Ferner Date: Thu, 20 Oct 2016 11:48:31 +0200 Subject: [PATCH] Fix typo (#782) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1f561d6..96b4365 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9164,7 +9164,7 @@ Can cause maintenance problems. // ... int d = 7; // ... - d = value_to_be_rerurned; + d = value_to_be_returned; // ... }