Skip to content

Commit c4cdbe3

Browse files
authored
Fix typo in "Using the GSL: A Tutorial and FAQ" (#1828)
Duplicated `is` is redundant.
1 parent 375d452 commit c4cdbe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/gsl-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ void dangerous_process_ints(int* p, size_t n) {
112112
}
113113
~~~
114114

115-
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:
115+
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:
116116

117117
~~~cpp
118118
void process_ints(span<int> s) {

0 commit comments

Comments
 (0)