diff --git a/strmangle/strmangle.go b/strmangle/strmangle.go index 9490831..043b3f3 100644 --- a/strmangle/strmangle.go +++ b/strmangle/strmangle.go @@ -298,7 +298,6 @@ func TitleCaseIdentifier(id string) string { addDots := false for i := 0; nextDot >= 0; i++ { - fmt.Println(lastDot, nextDot) fragment := id[lastDot:nextDot] titled := TitleCase(fragment)