From 7ab52dc323ae96885b11ee878ce59d1d71980020 Mon Sep 17 00:00:00 2001 From: Sylvain Baubeau Date: Mon, 15 Sep 2025 13:36:07 +0200 Subject: [PATCH] Fix typo in encoding/json --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f06c0522202..28e74eebfce 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ func main() { ### Encoder/Decoder -By default, datadog-api-client-go uses the Go standard library [`enconding/json`](https://pkg.go.dev/encoding/json) to encode and decode data. As an alternative users can opt in to use [`goccy/go-json`](https://github.com/goccy/go-json) by specifying the go build tag `goccy_gojson`. +By default, datadog-api-client-go uses the Go standard library [`encoding/json`](https://pkg.go.dev/encoding/json) to encode and decode data. As an alternative users can opt in to use [`goccy/go-json`](https://github.com/goccy/go-json) by specifying the go build tag `goccy_gojson`. In comparison, there was a significant decrease in cpu time with `goccy/go-json` with an increase in memory overhead. For further benchmark information, see [`goccy/go-json` benchmark](https://github.com/goccy/go-json#benchmarks) section.