Merge pull request #102 from clausjensbymadsen/master

Fix typo in E.17
This commit is contained in:
Andrew Pardoe 2015-09-24 07:44:03 -07:00
commit 88716fd1c6

View File

@ -8577,7 +8577,7 @@ Instead, use
**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 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**: