From d288a52a02dd93a0bfbfdf01a7af65d825ad161b Mon Sep 17 00:00:00 2001 From: Antonio Pagano Date: Sun, 4 Nov 2018 10:28:24 -0500 Subject: [PATCH] removing acronym handling in ident given it was covered by #8 --- ident.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ident.go b/ident.go index 1d4f51d..27f735f 100644 --- a/ident.go +++ b/ident.go @@ -67,13 +67,6 @@ func toParts(s string) []string { continue } - if baseAcronyms[x] { - parts = xappend(parts, x) - x = cs - prev = c - continue - } - if unicode.IsUpper(c) && !unicode.IsUpper(prev) { parts = xappend(parts, x) x = cs