1
0
mirror of https://github.com/microsoft/GSL.git synced 2025-04-03 09:28:35 -04:00

fix some typos

This commit is contained in:
Carson Radtke 2024-11-09 14:42:55 -06:00
parent 898db79600
commit b8bfc194cf

@ -141,8 +141,8 @@ namespace details
constexpr span_iterator(pointer begin, pointer end, pointer current) constexpr span_iterator(pointer begin, pointer end, pointer current)
: begin_(begin), end_(end), current_(current) : begin_(begin), end_(end), current_(current)
{ {
Expects(begin && current && end); Expects(begin_ && current_ && end_);
Expects(begin <= current && current <= end); Expects(begin_ <= current_ && current <= end_);
} }
constexpr operator span_iterator<const Type>() const noexcept constexpr operator span_iterator<const Type>() const noexcept
@ -180,7 +180,7 @@ namespace details
constexpr span_iterator& operator--() noexcept constexpr span_iterator& operator--() noexcept
{ {
Expects(begin != current_); Expects(begin_ != current_);
--current_; --current_;
return *this; return *this;
} }