proper formatting

This commit is contained in:
Nadav Wexler 2019-07-01 18:40:28 +03:00
parent 6056219845
commit 9e873d0712
1 changed files with 11 additions and 13 deletions

View File

@ -159,7 +159,6 @@ var (
Method = SymbolElementType("Method")
)
type symbolDescription struct {
FullyQualifiedName string
ElementType SymbolElementType
@ -168,7 +167,6 @@ type symbolDescription struct {
Template string
}
func (s *multiString) String() string {
return strings.Join(*s, ",")
}
@ -435,7 +433,7 @@ func main() {
}
fqn := dsc.GetFullyQualifiedName()
currentSymbol := symbolDescription{FullyQualifiedName:fqn}
currentSymbol := symbolDescription{FullyQualifiedName: fqn}
var elementTypeDescription string
switch d := dsc.(type) {