From e9430daad4dcee0c9e14054da84653e739832c77 Mon Sep 17 00:00:00 2001 From: a3957273 <89583054+a3957273@users.noreply.github.com> Date: Tue, 13 Feb 2024 01:33:56 +0000 Subject: [PATCH] Change category, capitalise description --- src/core/config/Categories.json | 4 ++-- src/core/operations/JSONToGoStruct.mjs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json index 90406c5c..32d5e725 100644 --- a/src/core/config/Categories.json +++ b/src/core/config/Categories.json @@ -67,7 +67,8 @@ "JSON to CSV", "Avro to JSON", "CBOR Encode", - "CBOR Decode" + "CBOR Decode", + "JSON to Go Struct" ] }, { @@ -414,7 +415,6 @@ "JavaScript Minify", "JSON Beautify", "JSON Minify", - "JSON to Go Struct", "XML Beautify", "XML Minify", "SQL Beautify", diff --git a/src/core/operations/JSONToGoStruct.mjs b/src/core/operations/JSONToGoStruct.mjs index fce2b665..08bfa587 100644 --- a/src/core/operations/JSONToGoStruct.mjs +++ b/src/core/operations/JSONToGoStruct.mjs @@ -21,7 +21,7 @@ class JSONToGoStruct extends Operation { this.name = "JSON to Go Struct"; 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.inputType = "string"; this.outputType = "string";