diff options
| author | Shulhan <ms@kilabit.info> | 2024-01-25 19:32:48 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-01-25 19:45:46 +0700 |
| commit | 099ccef4614d8b3ba19f44c50ef984631d161240 (patch) | |
| tree | a31565d4ec4cc911735c086c35da8d89d689ac3e /form_input.go | |
| parent | 7d3ce2ca01f2d4954d89430e48ca23c89416668b (diff) | |
| download | gorankusu-099ccef4614d8b3ba19f44c50ef984631d161240.tar.xz | |
all: fix warnings recommended by linter revive
Most of the fixes related to naming variables with acronyms, for example
HTTP, JSON, URL, and so on.
Diffstat (limited to 'form_input.go')
| -rw-r--r-- | form_input.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/form_input.go b/form_input.go index 9934f51..9576c98 100644 --- a/form_input.go +++ b/form_input.go @@ -9,7 +9,7 @@ type FormInputKind string // List of valid value for field FormInput.Kind. const ( // FormInputKindBoolean only used for convertion, for example - // ToJsonObject. + // ToJSONObject. // In the WUI, it will be rendered as string. FormInputKindBoolean = `boolean` FormInputKindNumber = `number` |
