Преглед на файлове

Updated Comments in Gitote.go

Yoginth преди 7 години
родител
ревизия
08b52c9056
променени са 1 файла, в които са добавени 5 реда и са изтрити 3 реда
  1. 5 3
      gitote.go

+ 5 - 3
gitote.go

@@ -6,6 +6,8 @@
 // This source code is licensed under the MIT license found in the
 // LICENSE file in the root directory of this source tree.
 
+// Gitote (Git + Rem(ote) = Gitote) - Software version control made simple.
+
 /*
 
    _____ _ _        _
@@ -17,7 +19,7 @@
 
 */
 
-package main
+package main // import "gitote/gitote"
 
 import (
 	"gitote/gitote/cmd"
@@ -28,10 +30,10 @@ import (
 	"github.com/urfave/cli"
 )
 
-// AppVer represents the version of Gitote
+// AppVer holds the current Gitote version
 const AppVer = "1.0.2-prod-rc.2"
 
-// APIVer represents the API version of Gitote
+// APIVer holds the current Gitote API version
 const APIVer = "v1"
 
 func init() {