Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
chen3feng committed Aug 8, 2022
1 parent 170a4f5 commit 7b5af7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# stl4go -- STL for Golang

English [中文版](README_zh.md)
English | [简体中文](README_zh.md)

This library contains generic containers and algorithms, it is designed to be STL for Golang.

Expand Down
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# stl4go -- Go 语言的 STL

[English](README.md) 中文版
[English](README.md) | 简体中文

本库包含 Go 语言实现的范型容器和算法库,就像 C++ 中的 STL。

Expand Down
2 changes: 1 addition & 1 deletion skiplist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func TestSkipList_Remove_Nonexist(t *testing.T) {

func TestSkipList_Remove_Level(t *testing.T) {
sl := newSkipListN(100)
expectGe(t, sl.level, 5)
expectGe(t, sl.level, 4)
for i := 0; i < 100; i++ {
sl.Remove(i)
}
Expand Down

0 comments on commit 7b5af7c

Please sign in to comment.