Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

Commit 7a58c3c

Browse files
committed
Update readme
1 parent 247c844 commit 7a58c3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ arr.insert(2)
2222
arr.insert(2) // Does nothing, as 2 is already in there.
2323

2424
console.log([...arr]) // [1, 2, 3, 5]
25-
console.log(arr[1]) // 2
26-
console.log(arr.indexOf(3)) // 2
25+
console.log(arr.get(1)) // 2
26+
console.log(arr.bisect(3)) // 2
2727
```

0 commit comments

Comments
 (0)