From c4cdbe369e2c8ca2c86de3cd7f7e2e3c487d76cf Mon Sep 17 00:00:00 2001 From: char-lie <5962274+char-lie@users.noreply.github.com> Date: Mon, 6 Sep 2021 06:25:01 +0300 Subject: [PATCH] Fix typo in "Using the GSL: A Tutorial and FAQ" (#1828) Duplicated `is` is redundant. --- docs/gsl-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gsl-intro.md b/docs/gsl-intro.md index 3099913..f7bd835 100644 --- a/docs/gsl-intro.md +++ b/docs/gsl-intro.md @@ -112,7 +112,7 @@ void dangerous_process_ints(int* p, size_t n) { } ~~~ -A `span` supports range-`for` -- note this is zero-overhead and does not need to perform any range check, because the range-`for` loop is is known by construction not to exceed the range's bounds: +A `span` supports range-`for` -- note this is zero-overhead and does not need to perform any range check, because the range-`for` loop is known by construction not to exceed the range's bounds: ~~~cpp void process_ints(span s) {