about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--main.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.go b/main.go
index 8372dec..c9a6309 100644
--- a/main.go
+++ b/main.go
@@ -13,13 +13,15 @@ import (
 	"github.com/lrstanley/girc"
 )
 
+// function to grease error checking
 func checkerr(err error) {
 	if err != nil {
 		panic(err)
 	}
 }
 
-//right now Conf.Pass isn't used, but i'm leaving it so the bot
+//Conf ... right now Conf.Pass isn't used,
+//but i'm leaving it so the bot
 //can have a registered nick
 type Conf struct {
 	Owner  string
@@ -126,7 +128,7 @@ func main() {
 		}
 	})
 
-	// if err is not nothing, eg, if there's an error
+	// die if there's a connection error
 	if err := client.Connect(); err != nil {
 		log.Fatalf("an error occurred while attempting to connect to %s: %s", client.Server(), err)
 	}