Merge pull request #36 from Linkus000/master

Remove excessive minus in chapter 4
This commit is contained in:
pllk 2017-03-25 20:12:32 +02:00 committed by GitHub
commit e81cdb4a0a
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ cout << *it << "\n";
\end{lstlisting}
Iterators can be moved using the operators
\texttt{++} (forward) and \texttt{---} (backward),
\texttt{++} (forward) and \texttt{--} (backward),
meaning that the iterator moves to the next
or previous element in the set.