From 3af2b932639116552232720387b8cb8bcd3dfef5 Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Wed, 23 Sep 2015 06:44:39 -0700 Subject: [PATCH] The name of the namespace of the support library Fixes #91 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ad5425c..97959d1 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11298,7 +11298,7 @@ These functions all have bounds-safe overloads that take `array_view`. Standard The GSL is a small library of facilities designed to support this set of guidelines. Without these facilities, the guidelines would have to be far more restrictive on language details. -The Core Guidelines support library is define in namespace `Guide` and the names may be aliases for standard library or other well-known library names.Using the (compile-time) indirection through the `Guide` namespace allows for experimentation and for local variants of the support facilities. +The Core Guidelines support library is defined in namespace `gsl` and the names may be aliases for standard library or other well-known library names. Using the (compile-time) indirection through the `gsl` namespace allows for experimentation and for local variants of the support facilities. The support library facilities are designed to be extremely lightweight (zero-overhead) so that they impose no overhead compared to using conventional alternatives. Where desirable, they can be "instrumented" with additional functionality (e.g., checks) for tasks such as debugging.