Skip to content
Snippets Groups Projects
Commit 6e00a1da authored by Cornel Rautenbach's avatar Cornel Rautenbach
Browse files

Fix typo

parent e7527865
Branches
Tags
No related merge requests found
...@@ -102,7 +102,7 @@ func TrimP(sp *string) *string { ...@@ -102,7 +102,7 @@ func TrimP(sp *string) *string {
func ConcatP(args ...*string) string { func ConcatP(args ...*string) string {
s := "" s := ""
for _, arg := range args { for _, arg := range args {
if args != nil && *arg != "" { if arg != nil && *arg != "" {
if s != "" { if s != "" {
s += ", " s += ", "
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment