From fd6111ee27c4d113d239d11ac392a68fb05002c4 Mon Sep 17 00:00:00 2001 From: Jeongho Nam <13158709+samchon@users.noreply.github.com> Date: Mon, 27 Mar 2023 15:20:35 +0900 Subject: [PATCH] Fix #111 - mistyped README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d093f6f8..04345f8f 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ function main(): void console.log(it.first, it.second); const it: std.TreeMap.Iterator = map.lower_bound(3); - console.log(`lower bound of 3 is: ${x.first}, ${x.second}`); + console.log(`lower bound of 3 is: ${it.first}, ${it.second}`); } main(); ```