Skip to content

Commit

Permalink
Merge pull request #24 from cupen/patch-1
Browse files Browse the repository at this point in the history
fix: typo
  • Loading branch information
liyue201 authored Apr 8, 2024
2 parents d853fac + b16dd57 commit c22c7dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ GoSTL is a data structure and algorithm library for go, designed to provide func
- [bloom_filter](#bloom_filter)
- [hamt(hash_array_mapped_trie)](#hamt)
- [ketama](#ketama)
- [skiplist](#skliplist)
- [skiplist](#skiplist)
- algorithm
- [sort(quick_sort)](#sort)
- [stable_sort(merge_sort)](#sort)
Expand Down Expand Up @@ -490,8 +490,8 @@ func main() {


```
### <a name="skliplist">skliplist</a>
Skliplist is a kind of data structure which can search quickly by exchanging space for time. Goroutine safety is supported.
### <a name="skiplist">skiplist</a>
Skiplist is a kind of data structure which can search quickly by exchanging space for time. Goroutine safety is supported.

```go
package main
Expand Down

0 comments on commit c22c7dc

Please sign in to comment.