aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGalik <galik.bool@gmail.com>2016-08-10 17:24:00 +0100
committerGalik <galik.bool@gmail.com>2016-08-10 17:24:00 +0100
commit222c2d85fd2ab37128f5cf00d5267489ea2a8625 (patch)
tree9081760aad3439e905805a6661683eb2f0f3681b /README.md
parentf5dda0fb20ef6025a8f9155921b5e3e27c125f79 (diff)
downloadplatform_external_Microsoft-GSL-222c2d85fd2ab37128f5cf00d5267489ea2a8625.tar.gz
platform_external_Microsoft-GSL-222c2d85fd2ab37128f5cf00d5267489ea2a8625.tar.bz2
platform_external_Microsoft-GSL-222c2d85fd2ab37128f5cf00d5267489ea2a8625.zip
Removed .h extension from header files.
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index f54b0c5..58bb46c 100644
--- a/README.md
+++ b/README.md
@@ -8,8 +8,8 @@ The library includes types like `span<T>`, `string_span`, `owner<>` and others.
The entire implementation is provided inline in the headers under the [gsl](./gsl) directory. The implementation generally assumes a platform that implements C++14 support. There are specific workarounds to support MSVC 2013 and 2015.
-While some types have been broken out into their own headers (e.g. [gsl/span.h](./gsl/span.h)),
-it is simplest to just include [gsl/gsl.h](./gsl/gsl.h) and gain access to the entire library.
+While some types have been broken out into their own headers (e.g. [gsl/span](./gsl/span)),
+it is simplest to just include [gsl/gsl](./gsl/gsl) and gain access to the entire library.
> NOTE: We encourage contributions that improve or refine any of the types in this library as well as ports to
other platforms. Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for more information about contributing.
@@ -78,8 +78,7 @@ MSVC++
GCC/clang
-I$HOME/dev/GSL
-
Include the library using:
- #include <gsl/gsl.h>
+ #include <gsl/gsl>