aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorNeil MacIntosh <neilmac@microsoft.com>2015-11-04 13:50:57 -0800
committerNeil MacIntosh <neilmac@microsoft.com>2015-11-04 13:50:57 -0800
commitcaabb40440f44b24b573a0822433ea758b469b96 (patch)
tree7b7fe1eb47e88fca6dadb2c6acf773f09e957a84 /README.md
parentffdf97b83d79b3ef969f6d44e0899ffcc7932017 (diff)
downloadplatform_external_Microsoft-GSL-caabb40440f44b24b573a0822433ea758b469b96.tar.gz
platform_external_Microsoft-GSL-caabb40440f44b24b573a0822433ea758b469b96.tar.bz2
platform_external_Microsoft-GSL-caabb40440f44b24b573a0822433ea758b469b96.zip
Rename of array_view/string_view in readme.
Knew I'd miss something!
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index c687673..6e84a82 100644
--- a/README.md
+++ b/README.md
@@ -4,11 +4,11 @@ The Guidelines Support Library (GSL) contains functions and types that are sugge
[C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines) maintained by the [Standard C++ Foundation](https://isocpp.org).
This repo contains Microsoft's implementation of GSL.
-The library includes types like `array_view<>`, `string_view<>`, `owner<>` and others.
+The library includes types like `span<T>`, `string_span`, `owner<>` and others.
The entire implementation is provided inline in the headers under the [include](./include) directory.
-While some types have been broken out into their own headers (e.g. [include/array_view.h](./include/array_view.h)),
+While some types have been broken out into their own headers (e.g. [include/span.h](./include/span.h)),
it is simplest to just include [gsl.h](./include/gsl.h) 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