From 16e270dee9002033c9d25277e0a726a22e14e0ac Mon Sep 17 00:00:00 2001 From: Leonardo Perez Pulido Date: Mon, 27 Nov 2017 10:43:15 -0400 Subject: [PATCH] Typo: add missing question mark --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index cade30e..84c615a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1249,7 +1249,7 @@ Reporting through non-local variables (e.g., `errno`) is easily ignored. For exa // don't: no test of printf's return value fprintf(connection, "logging: %d %d %d\n", x, y, s); -What if the connection goes down so that no logging output is produced? See I.??. +What if the connection goes down so that no logging output is produced? See I.???. **Alternative**: Throw an exception. An exception cannot be ignored.