Skip to content

Commit b280078

Browse files
authored
Removing nested sprintf call (#107)
1 parent 92a4c13 commit b280078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/util/conv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,6 @@ func GetPrintableTypeWithValue(in interface{}) string {
466466
return fmt.Sprintf("%[1]T(%[1]f)", in)
467467

468468
default:
469-
return fmt.Sprintf(fmt.Sprintf("%[1]T(%[1]v)", in))
469+
return fmt.Sprintf("%[1]T(%[1]v)", in)
470470
}
471471
}

0 commit comments

Comments
 (0)