Fix typo in Omitted method name

Corrected the spelling of the `Omitted` method to ensure consistency and avoid potential confusion. This change does not affect the functionality but improves code readability and accuracy.
This commit is contained in:
Winni Neessen 2024-09-11 11:34:59 +02:00
parent 754b2b90aa
commit 68fe249669
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -69,8 +69,8 @@ func (v *Variable[T]) NotNil() bool {
return v.notNil return v.notNil
} }
// Ommited returns true if a value was omitted in the JSON // Omitted returns true if a value was omitted in the JSON
func (v *Variable[T]) Ommited() bool { func (v *Variable[T]) Omitted() bool {
return !v.present return !v.present
} }