Typo: add missing question mark

This commit is contained in:
Leonardo Perez Pulido 2017-11-27 10:43:15 -04:00
parent 7f909cc18e
commit 16e270dee9

View File

@ -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.