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.
This commit is contained in:
Winni Neessen 2024-09-01 16:49:08 +02:00
parent d6b359f1f5
commit 34fae8a109
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -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"`