From 04637619de8963298527d26d98d489efb2687ddf Mon Sep 17 00:00:00 2001 From: Treb Connell Date: Mon, 28 Sep 2015 15:20:19 -0700 Subject: [PATCH] Change 'finally object' to 'final_action object' --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 6fb0055..8eece04 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8339,7 +8339,7 @@ Unless you really need pointer semantics, use a local resource object: // ... } -**Note**: If there is no obvious resource handle, cleanup actions can be represented by a [`finally` object](#Re-finally) +**Note**: If there is no obvious resource handle, cleanup actions can be represented by a [`final_action` object](#Re-finally) **Note**: But what do we do if we are writing a program where exceptions cannot be used? First challenge that assumption; there are many anti-exceptions myths around.