bugfix: bring example data up to date

This commit is contained in:
Kartik K. Agaram 2024-06-11 13:25:09 -07:00
parent 063430757b
commit 9c9a77c556
1 changed files with 8 additions and 8 deletions

View File

@ -1,11 +1,11 @@
Data = {
-- an example if you don't provide any data
-- standings from during the 2023 Cricket World Cup
Ind={Pak=2, Aus=2},
NZ={Eng=2},
SA={Aus=2, SL=2},
Pak={Ind=0, SL=2},
Aus={Ind=0, SA=0, SL=2},
SL={SA=0, Pak=0, Aus=0},
Eng={NZ=0}
}
Ind={Pak=2, Aus=2, count=2},
NZ={Eng=2, count=1},
SA={Aus=2, SL=2, count=2},
Pak={Ind=0, SL=2, count=2},
Aus={Ind=0, SA=0, SL=2, count=3},
SL={SA=0, Pak=0, Aus=0, count=2},
Eng={NZ=0, count=1}
}