Change category, capitalise description

This commit is contained in:
a3957273 2024-02-13 01:33:56 +00:00
parent a38173d844
commit e9430daad4
2 changed files with 3 additions and 3 deletions

View file

@ -67,7 +67,8 @@
"JSON to CSV", "JSON to CSV",
"Avro to JSON", "Avro to JSON",
"CBOR Encode", "CBOR Encode",
"CBOR Decode" "CBOR Decode",
"JSON to Go Struct"
] ]
}, },
{ {
@ -414,7 +415,6 @@
"JavaScript Minify", "JavaScript Minify",
"JSON Beautify", "JSON Beautify",
"JSON Minify", "JSON Minify",
"JSON to Go Struct",
"XML Beautify", "XML Beautify",
"XML Minify", "XML Minify",
"SQL Beautify", "SQL Beautify",

View file

@ -21,7 +21,7 @@ class JSONToGoStruct extends Operation {
this.name = "JSON to Go Struct"; this.name = "JSON to Go Struct";
this.module = "Default"; this.module = "Default";
this.description = "converts JSON into a Go type definition."; this.description = "Converts JSON into a Go type definition.";
this.infoURL = "https://mholt.github.io/json-to-go/"; this.infoURL = "https://mholt.github.io/json-to-go/";
this.inputType = "string"; this.inputType = "string";
this.outputType = "string"; this.outputType = "string";