Skip to content

Commit f03473c

Browse files
authored
[over.sub] Fix typo: change oeprator to operator (#5140)
1 parent 408623b commit f03473c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/overloading.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3315,7 +3315,7 @@
33153315
\begin{codeblock}
33163316
struct X {
33173317
Z operator[](std::initializer_list<int>);
3318-
Z oeprator[](auto...);
3318+
Z operator[](auto...);
33193319
};
33203320
X x;
33213321
x[{1,2,3}] = 7; // OK, meaning \tcode{x.\keyword{operator}[](\{1,2,3\})}

0 commit comments

Comments
 (0)