From 8e8c2f62d2c2bb7f5a1fe6934a1ee8f0873c12c7 Mon Sep 17 00:00:00 2001 From: Taito Ohsumi Date: Sat, 1 Jul 2023 20:07:06 +0900 Subject: [PATCH] fix typo --- 031-iterator-operations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } ~~~