From 37730aeec65a7e919ec0e0ad5e226831d5b46e39 Mon Sep 17 00:00:00 2001 From: futreall <86553580+futreall@users.noreply.github.com> Date: Thu, 30 Jan 2025 19:44:46 +0200 Subject: [PATCH] Update openrpc.go --- api/docgen-openrpc/openrpc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/docgen-openrpc/openrpc.go b/api/docgen-openrpc/openrpc.go index ec8744ab276..27f59fb63b4 100644 --- a/api/docgen-openrpc/openrpc.go +++ b/api/docgen-openrpc/openrpc.go @@ -98,7 +98,7 @@ func OpenRPCSchemaTypeMapper(ty reflect.Type) *jsonschema.Type { // specific to our services. switch ty.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: - // Return all integer types as the hex representation integer schemea. + // Return all integer types as the hex representation integer schema. ret := unmarshalJSONToJSONSchemaType(integerD) return ret case reflect.Uintptr: