This commit is contained in:
Neale Pickett 2020-10-12 16:46:03 +00:00
parent 8ad42b2dc7
commit e4f34b4c05
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ func (s *State) maybeInitialize() {
if f, err := s.Create("initialized"); err == nil { if f, err := s.Create("initialized"); err == nil {
fmt.Fprintln(f, "initialized: remove to re-initialize the contest.") fmt.Fprintln(f, "initialized: remove to re-initialize the contest.")
fmt.Fprintln(f) fmt.Fprintln(f)
fmt.Fprintln(f, "This instance was initaliazed at", now) fmt.Fprintln(f, "This instance was initialized at", now)
f.Close() f.Close()
} }