README fix

This commit is contained in:
Vlad Gukasov 2021-01-02 18:52:14 +03:00
parent 9bd5fe5cb5
commit f0681219d2
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# GoMoji
<p align="center">work with emoji in the most convenient way</p>
GoMoji is a Go package that provides a [fast](#performance) and [simple](#check-string-contains-emoji) way to work with emojis in a string.
GoMoji is a Go package that provides a [fast](#performance) and [simple](#check-string-contains-emoji) way to work with emojis in strings.
It has features such as:
* [check whether string contains emoji](#check-string-contains-emoji),
* [find all emojis in string](#find-all),

View File

@ -10,7 +10,7 @@ import (
)
var (
accessKey = flag.String("accessKey", ":8080", "Access key to interact with Open Emoji API. You can get it from https://emoji-api.com.")
accessKey = flag.String("accessKey", "", "Access key to interact with Open Emoji API. You can get it from https://emoji-api.com.")
)
func main() {