diff --git a/031-iterator-operations.md b/031-iterator-operations.md index eef2bfc..50623ac 100644 --- a/031-iterator-operations.md +++ b/031-iterator-operations.md @@ -226,7 +226,7 @@ void f( Iterator i ) auto j = i ; i == j ; // true ++j ; - i = j ; // false + i == j ; // false } ~~~