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

Case of name change

parent 2332f039
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ func UnwrapString(s *string) string {
}
//trim specified strings, replacing empty string with nil
func Trimp(sp *string) *string {
func TrimP(sp *string) *string {
if sp == nil {
return nil
}
......@@ -97,7 +97,7 @@ func Trimp(sp *string) *string {
}
//concatenate all specified non-empty strings with ", " separators
func Concatp(args ...*string) string {
func ConcatP(args ...*string) string {
s := ""
for _, arg := range args {
if args != nil && *arg != "" {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment