about summary refs log tree commit diff stats
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 5b8e0fb..46b3be5 100644
--- a/main.go
+++ b/main.go
@@ -16,8 +16,8 @@ import (
 	"github.com/lrstanley/girc"
 )
 
-// ZWSP is a zero-width space
-const ZWSP = string(0x200b)
+// ZW is a zero-width character
+const ZW = string(0x200c)
 
 // Conf holds all the config info
 type Conf struct {
@@ -169,7 +169,7 @@ func main() {
 					continue
 				}
 
-				c := fmt.Sprintf("%s%s", ZWSP, split[i])
+				c := fmt.Sprintf("%s%s", ZW, split[i])
 				out.WriteString(c + " ")
 			}