From e548f6e5609b776b40fd32933cfa29bcc6983394 Mon Sep 17 00:00:00 2001 From: andrewmelis Date: Tue, 16 Jan 2024 10:55:51 -0500 Subject: [PATCH] Fix typo in README.md, "omiempty" -> "omitempty" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad0ae5c..fa2dc6f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ obj := struct { // RequiredID is a required, nullable field RequiredID nullable.Nullable[int] `json:"id"` // OptionalString is an optional, nullable field - // NOTE that no pointer is required, only `omiempty` + // NOTE that no pointer is required, only `omitempty` OptionalString nullable.Nullable[string] `json:"optionalString,omitempty"` }{} ```