aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhykzhykzhyk <zhykzhykzhyk@users.noreply.github.com>2017-03-11 01:55:24 +0800
committerNeil MacIntosh <neilmac@microsoft.com>2017-03-10 09:55:24 -0800
commit5905d2d77467d9daa18fe711b55e2db7a30fe3e3 (patch)
tree9a26f054b7c3530c5229458e1678a95215139414
parent2676e172db018af7ef4bb93c274f18fd8319460d (diff)
downloadMicrosoft-GSL-5905d2d77467d9daa18fe711b55e2db7a30fe3e3.tar.gz
Fix links in README.md (#457)
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index ee630e0..25c92cf 100644
--- a/README.md
+++ b/README.md
@@ -6,10 +6,10 @@ This repo contains Microsoft's implementation of GSL.
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.
+The entire implementation is provided inline in the headers under the [gsl](./include/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](./gsl/span)),
-it is simplest to just include [gsl/gsl](./gsl/gsl) and gain access to the entire library.
+While some types have been broken out into their own headers (e.g. [gsl/span](./include/gsl/span)),
+it is simplest to just include [gsl/gsl](./include/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.