diff options
Diffstat (limited to 'absl/types/span.h')
-rw-r--r-- | absl/types/span.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/types/span.h b/absl/types/span.h index 6ba466850456..d365f17d5219 100644 --- a/absl/types/span.h +++ b/absl/types/span.h @@ -224,7 +224,7 @@ using EnableIfConvertibleToSpanConst = // point to remains alive, must also ensure that such memory does not get // reallocated. Therefore, to avoid undefined behavior, containers with // associated span views should not invoke operations that may reallocate memory -// (such as resizing) or invalidate iterarors into the container. +// (such as resizing) or invalidate iterators into the container. // // One common use for a `Span` is when passing arguments to a routine that can // accept a variety of array types (e.g. a `std::vector`, `absl::InlinedVector`, |