From dfd4d397bbd54c0b5bd8c4f1a50a5d047b7e4cd5 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Sat, 24 Feb 2018 02:14:50 +0100 Subject: [PATCH] fix version format --- core.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.go b/core.go index 4c6d09853..fc709468e 100644 --- a/core.go +++ b/core.go @@ -31,7 +31,7 @@ func Version() string { // VersionStatement returns a list of strings representing the full version info. func VersionStatement() []string { return []string{ - serial.Concat("V2Ray ", Version(), "(", codename, ")", build), + serial.Concat("V2Ray ", Version(), " (", codename, ") ", build), intro, } }