From 4aa62cf7ae1bef22956af7e379b0fb6158988960 Mon Sep 17 00:00:00 2001 From: 10756864 <antoine.kryus@etu.utc.fr> Date: Thu, 13 Oct 2022 18:14:56 +0200 Subject: [PATCH] mod --- ia04/comsoc/tieBreak.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ia04/comsoc/tieBreak.go b/ia04/comsoc/tieBreak.go index 5fbe9ea..35fd1c8 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) { -- GitLab