aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2022-10-17 01:11:18 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2022-10-17 01:11:18 +0300
commit7e02f1876db6ba5b8b5e70e64841ee10c3bb7a5c (patch)
treea10645f72617a0b6a49425bd745c511545184b5d /README.md
parentMerge pull request #2 from BiSaXa/dev (diff)
downloadbitreader-7e02f1876db6ba5b8b5e70e64841ee10c3bb7a5c.tar.gz
bitreader-7e02f1876db6ba5b8b5e70e64841ee10c3bb7a5c.tar.bz2
bitreader-7e02f1876db6ba5b8b5e70e64841ee10c3bb7a5c.zip
update for github username change
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 2954d37..052bdfe 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
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) 1# BitReader [![Go Report Card](https://goreportcard.com/badge/github.com/pektezol/bitreader)](https://goreportcard.com/report/github.com/pektezol/bitreader) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/pektezol/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).\
@@ -7,13 +7,13 @@ Checking for overflowing the data.
7 7
8## Installation 8## Installation
9```bash 9```bash
10$ go get github.com/bisaxa/bitreader 10$ go get github.com/pektezol/bitreader
11``` 11```
12 12
13## Usage 13## Usage
14 14
15```go 15```go
16import "github.com/bisaxa/bitreader" 16import "github.com/pektezol/bitreader"
17 17
18// data: []byte Data to read from byte array 18// data: []byte Data to read from byte array
19// le: bool Little-endian(true) or big-endian(false) state 19// le: bool Little-endian(true) or big-endian(false) state