diff --git a/ia04/comsoc/tieBreak.go b/ia04/comsoc/tieBreak.go
index 5fbe9eabe9be60abccd49c976248082a1967768b..35fd1c836470851787ce68e276d4614a1e66ce2d 100644
--- a/ia04/comsoc/tieBreak.go
+++ b/ia04/comsoc/tieBreak.go
@@ -5,7 +5,7 @@ import("errors")
 func TieBreakFactory(tieBreakAlts []Alternative) (func ([]Alternative) (Alternative, err error)) {
   return func(alts []Alternative) (Alternative, err error) {
     if len(alts) == 0 || alts == nil {
-      return -1, errors.New("002: NullAlternatives")
+      return -1, errors.New("003: NullAlternatives")
     }
 
     for _,alt := range(alts) {