Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
edwingeng committed Jul 27, 2022
1 parent 7b63986 commit dbc607e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,13 @@ Random/Deque 50000000 24.7 ns/op 4 B/op 0 allo
Random/list.List 30000000 46.9 ns/op 28 B/op 1 allocs/op
```

# Getting started
# Getting Started
```
go get -u github.com/edwingeng/deque
```

# Usage
``` go
import "github.com/edwingeng/deque"

dq := deque.NewDeque()
dq.PushBack(100)
dq.PushBack(200)
Expand Down
4 changes: 1 addition & 3 deletions v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@ Random/Deque 50000000 13.9 ns/op 0 B/op 0 allo
Random/list.List 30000000 46.9 ns/op 28 B/op 1 allocs/op
```

# Getting started
# Getting Started
```
go get -u github.com/edwingeng/deque/v2
```

# Usage
``` go
import "github.com/edwingeng/deque/v2"

dq := deque.NewDeque[int]()
dq.PushBack(100)
dq.PushBack(200)
Expand Down

0 comments on commit dbc607e

Please sign in to comment.