aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--bitreader.go2
-rw-r--r--bitreader_test.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4f28e7b..2954d37 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
1# BitReader 1# BitReader [![Go Report Card](https://goreportcard.com/badge/github.com/bisaxa/bitreader)](https://goreportcard.com/report/github.com/bisaxa/bitreader) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/bisaxa/bitreader/blob/main/LICENSE)
2A simple bit reader with big/little-endian support for golang.\ 2A simple bit reader with big/little-endian support for golang.\
3Reads data from an existing byte array.\ 3Reads data from an existing byte array.\
4Uses string manipulation (for now).\ 4Uses string manipulation (for now).\
diff --git a/bitreader.go b/bitreader.go
index 635776b..06374b8 100644
--- a/bitreader.go
+++ b/bitreader.go
@@ -1,4 +1,4 @@
1package main 1package bitreader
2 2
3import ( 3import (
4 "fmt" 4 "fmt"
diff --git a/bitreader_test.go b/bitreader_test.go
index ef421a8..5d344d2 100644
--- a/bitreader_test.go
+++ b/bitreader_test.go
@@ -1,4 +1,4 @@
1package main 1package bitreader
2 2
3import ( 3import (
4 "testing" 4 "testing"