From f77fa1ad401f9c549185d1d4775cd56347ec3651 Mon Sep 17 00:00:00 2001 From: Artem Golubikhin Date: Mon, 18 Sep 2017 19:50:36 +0300 Subject: [PATCH] R.1: Fix finally link --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5b9a5ef..77fe197 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8682,7 +8682,7 @@ What is `Port`? A handy wrapper that encapsulates the resource: ##### Note -Where a resource is "ill-behaved" in that it isn't represented as a class with a destructor, wrap it in a class or use [`finally`](#S-gsl) +Where a resource is "ill-behaved" in that it isn't represented as a class with a destructor, wrap it in a class or use [`finally`](#Re-finally) **See also**: [RAII](#Rr-raii).