Fix typo in E.17

This commit is contained in:
Claus Jensby Madsen
2015-09-23 16:56:48 +02:00
parent 058e1bfb41
commit 1d324efc7d

View File

@@ -8560,7 +8560,7 @@ Instead, use
**Reason**: Catching an exception in a function that cannot take a meaningful recovery action leads to complexity and waste. **Reason**: Catching an exception in a function that cannot take a meaningful recovery action leads to complexity and waste.
Let an exception propagate until it reaches a function that can handle it. Let an exception propagate until it reaches a function that can handle it.
Let cleanup actions on the unwinding path be handles by [RAII](#Re-raii). Let cleanup actions on the unwinding path be handled by [RAII](#Re-raii).
**Example; don't**: **Example; don't**: