Updating README typo.

This commit is contained in:
Maxime Delporte
2025-10-19 11:49:51 +02:00
parent 1927c64047
commit d2e38e75ac

View File

@@ -62,6 +62,7 @@ The following table summarizes how different Go types are mapped to JSON data ty
| time.Time | RFC3339-format JSON string |
| []byte | Base64-encoded JSON string |
|
The last two of these are special cases which deserve a bit more explanation :
- Go **time.Time** values (which are actually a struct behind the scenes) will be encoded as a JSON string in RFC 3339 format like **"2020-11-08T06:27:59+01:00"**, rather than as a JSON object.