From 34fae8a1093ea2cc7eac35b21b6316f9590e03fa Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sun, 1 Sep 2024 16:49:08 +0200 Subject: [PATCH] Fix indentation issue in README.md Corrected the indentation of the Float32 field in the JSONType struct. This change improves code readability and maintains consistent formatting throughout the documentation. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd39e7e..8b47ef5 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ import ( type JSONType struct { Bool niljson.NilBoolean `json:"bool"` - Float32 niljson.NilFloat32 `json:"float32,omitempty"` + Float32 niljson.NilFloat32 `json:"float32,omitempty"` Float64 niljson.NilFloat64 `json:"float64"` Int niljson.NilInt `json:"int"` Int64 niljson.NilInt64 `json:"int64"`