From fb6adb2477f78664df3efc3bf11b8d786e2020d5 Mon Sep 17 00:00:00 2001 From: sachsingh Date: Mon, 6 Feb 2023 16:37:23 +0000 Subject: [PATCH] fix_common_init_map --- codegen/casing.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codegen/casing.go b/codegen/casing.go index c8348d840..73f6ba838 100644 --- a/codegen/casing.go +++ b/codegen/casing.go @@ -33,7 +33,7 @@ var pascalCaseMap *sync.Map // CommonInitialisms is taken from https://github.com/golang/lint/blob/206c0f020eba0f7fbcfbc467a5eb808037df2ed6/lint.go#L731 var CommonInitialisms = map[string]bool{ - "ACL": true, + "ACL": false, "API": true, "ASCII": true, "CPU": true, @@ -48,7 +48,7 @@ var CommonInitialisms = map[string]bool{ "IP": true, "JSON": true, "LHS": true, - "OS": true, + "OS": false, "QPS": true, "RAM": true, "RHS": true, @@ -69,7 +69,7 @@ var CommonInitialisms = map[string]bool{ "UTF8": true, "VM": true, "XML": true, - "XMPP": true, + "XMPP": false, "XSRF": true, "XSS": true, }