diff --git a/README.md b/README.md index 2e8e23c..c8c46cf 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # go-gpp -Golang support for the IAB's GPP framework +Golang support for the IAB's GPP framework. + +Provided the basic *Parse* and *Encode* methods for conversions between IAB-supported +sections and GPP strings, people other than CMPs are not encouraged to generate GPP strings +in production according to the IAB documentation. + +For more information, please refer to https://github.com/InteractiveAdvertisingBureau/Global-Privacy-Platform \ No newline at end of file diff --git a/util/encoding.go b/util/encoding.go index 978b367..8fee1d5 100644 --- a/util/encoding.go +++ b/util/encoding.go @@ -11,7 +11,7 @@ var ( ) func getByteSlice() []byte { - // Most string need to be encoded are less than 8 bytes. + // Most string to be encoded are less than 8 bytes. return make([]byte, 0, 8) }