Skip to content

Commit 6e2fa20

Browse files
authored
[range.elements.iterator] Fix typo in declaration of operator<= (#3981)
1 parent 9c63289 commit 6e2fa20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/ranges.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6371,7 +6371,7 @@
63716371
requires @\libconcept{random_access_range}@<@\exposid{Base}@>;
63726372
friend constexpr bool operator>(const @\exposid{iterator}@& x, const @\exposid{iterator}@& y)
63736373
requires @\libconcept{random_access_range}@<@\exposid{Base}@>;
6374-
friend constexpr bool operator<=(const @\exposid{iterator}@& y, const @\exposid{iterator}@& y)
6374+
friend constexpr bool operator<=(const @\exposid{iterator}@& x, const @\exposid{iterator}@& y)
63756375
requires @\libconcept{random_access_range}@<@\exposid{Base}@>;
63766376
friend constexpr bool operator>=(const @\exposid{iterator}@& x, const @\exposid{iterator}@& y)
63776377
requires @\libconcept{random_access_range}@<@\exposid{Base}@>;

0 commit comments

Comments
 (0)