Skip to content

Commit 0005070

Browse files
committed
README fixes
1 parent 622a661 commit 0005070

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

LICENCE renamed to LICENSE

File renamed without changes.

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Heap structure, using go generics
2+
[![Go Report Card](https://goreportcard.com/badge/github.com/lispad/go-generics-tools)](https://goreportcard.com/report/github.com/lispad/go-generics-tools)
3+
[![MIT License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
24

35
Introduction
46
------------
@@ -9,7 +11,7 @@ generics. There are several heap implementations
911
- generic Heap implementation, that could be used for `any` type,
1012
- `ComparableHeap` for [comparable](https://go.dev/ref/spec#Comparison_operators) types. Additional `Search`
1113
and `Delete` are implemented,
12-
- for [`constraints.Ordered`](https://pkg.go.dev/golang.org/x/exp/constraints#Ordered) there are syntax sugar
14+
- for [`constraints.Ordered`](https://pkg.go.dev/golang.org/x/exp/constraints#Ordered) there are
1315
constructors for min, max heaps;
1416

1517
Also use-cases provided:
@@ -31,7 +33,7 @@ Usage Example
3133
import (
3234
"fmt"
3335

34-
"github.com/lispad/go-generics-heap/binheap"
36+
"github.com/lispad/go-generics-tools/binheap"
3537
)
3638

3739
func main() {
@@ -74,7 +76,7 @@ Installation
7476

7577
To install package, run:
7678

77-
go get github.com/lispad/go-generics-heap/binheap
79+
go get github.com/lispad/go-generics-tools/binheap
7880

7981
License
8082
-------

0 commit comments

Comments
 (0)