From 4aae872098af15ae9dcab1d6afdd2d3a29357b90 Mon Sep 17 00:00:00 2001 From: Donnie Adams Date: Mon, 6 Jul 2015 13:57:49 -0700 Subject: [PATCH] Added a space when printing first and last name --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index 7dd117c..5aa8b4f 100644 --- a/types.go +++ b/types.go @@ -60,7 +60,7 @@ func (u User) String() string { if u.FirstName != "" { str += u.FirstName if u.LastName != "" { - str += u.LastName + str += " " + u.LastName } } else { str += u.UserName