Skip to content

Commit

Permalink
Merge pull request #112 from samchon/features/README
Browse files Browse the repository at this point in the history
Fix #111 - mistyped README
  • Loading branch information
samchon authored Mar 27, 2023
2 parents fb12431 + fd6111e commit 5d60d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function main(): void
console.log(it.first, it.second);

const it: std.TreeMap.Iterator<number, string> = 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();
```
Expand Down

0 comments on commit 5d60d6a

Please # to comment.