From cf8d521437c336154196efeb7769223b5fcd8082 Mon Sep 17 00:00:00 2001 From: Lukasz Towarek Date: Tue, 15 Mar 2016 21:18:38 +0100 Subject: [PATCH] Fix broken links in I.13 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ef30aca..74825ef 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1620,7 +1620,7 @@ Passing `10` as the `n` argument may be a mistake: the most common convention is This `draw2()` passes the same amount of information to `draw()`, but makes the fact that it is supposed to be a range of `Circle`s explicit. See ???. **Exception**: Use `zstring` and `czstring` to represent a C-style, zero-terminated strings. -But when doing so, use `string_span` from the (GSL)[#GSL] to prevent range errors. +But when doing so, use `string_span` from the [GSL](#GSL) to prevent range errors. ##### Enforcement