Skip to content

Commit

Permalink
Fix markdownlint
Browse files Browse the repository at this point in the history
  • Loading branch information
nochso committed Sep 18, 2017
1 parent ebee6a7 commit cf6ce52
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# bytesort

[![GoDoc](https://godoc.org/github.com/nochso/bytesort?status.svg)](https://godoc.org/github.com/nochso/bytesort)
[![Build Status](https://travis-ci.org/nochso/bytesort.svg?branch=master)](https://travis-ci.org/nochso/bytesort)
[![Coverage Status](https://coveralls.io/repos/github/nochso/bytesort/badge.svg?branch=master)](https://coveralls.io/github/nochso/bytesort?branch=master)
[![Go Report Card](https://goreportcard.com/badge/github.com/nochso/bytesort)](https://goreportcard.com/report/github.com/nochso/bytesort)

Package bytesort encodes common Go types as binary/byte slices that are bytewise sortable.

Package bytesort encodes common Go types as binary/byte slices that are bytewise
sortable.

The output is intended for binary/bytewise comparison and sorting.
More specifically for creating the keys used in indexes in a bolt DB.
More specifically for creating the keys used in indexes of key value stores.

## Install

```
```sh
go get github.com/nochso/bytesort
```

Expand Down Expand Up @@ -56,9 +57,11 @@ sort.Slice(s, func(i, j int) bool {
return bytes.Compare(s[i], s[j]) < 0
})
```

`sort.Search` might also be of interest.

## Change log and versioning

This project adheres to [Semantic Versioning](http://semver.org/).

See the [CHANGELOG](CHANGELOG.md) for a full history of releases.
Expand Down

0 comments on commit cf6ce52

Please sign in to comment.