Skip to content

Commit

Permalink
Merge pull request #17 from epmills/master
Browse files Browse the repository at this point in the history
Correct Help Text for UTF-16 Big Endian Encoder
  • Loading branch information
joohoi authored Jun 28, 2020
2 parents 9e72c66 + 0d474e6 commit aef0645
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Available encoders:
urlencode - URL encode reserved characters
urlencodeall - URL encode all characters
utf16 - UTF-16 encoder (Little Endian)
utf16be - UTF-16 encoder (Little Endian)
utf16be - UTF-16 encoder (Big Endian)
```

To urlencode, base64encode and hex encode a string:
Expand Down Expand Up @@ -92,4 +92,4 @@ func main() {

## License

`pencode` is released under MIT license. See [LICENSE](https://github.com/ffuf/pencoder/blob/master/LICENSE).
`pencode` is released under MIT license. See [LICENSE](https://github.com/ffuf/pencoder/blob/master/LICENSE).
2 changes: 1 addition & 1 deletion pkg/pencode/utf16beencoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ func (u UTF16BEEncode) Encode(input []byte) ([]byte, error) {
}

func (u UTF16BEEncode) HelpText() string {
return "UTF-16 encoder (Little Endian)"
return "UTF-16 encoder (Big Endian)"
}

0 comments on commit aef0645

Please sign in to comment.