]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blobdiff - src/TSN/XML/Scores.hs
Add some docs for AutoRacingResults, and fix others.
[dead/htsn-import.git] / src / TSN / XML / Scores.hs
index 571f6b383833da7c5edba1f146b25cb6fe7e15f0..ef2330c6060f01686d6c1499d265c73d1f6b6fab 100644 (file)
@@ -253,13 +253,15 @@ newtype ScoreGameHTeam =
 -- * ScoreGame_ScoreGameTeam
 
 -- | Join a 'ScoreGame' with its home/away teams. Database-only. We
---   use a join table because the teams are kept unique.
+--   use a join table because the teams are kept unique. The first
+--   argument is the game id, the second argument is the visiting team
+--   (vteam) id, and the last argument is the home team (hteam) id.
 --
 data ScoreGame_ScoreGameTeam =
   ScoreGame_ScoreGameTeam
-    (DefaultKey ScoreGame) -- game id
-    (DefaultKey ScoreGameTeam) -- vteam id
-    (DefaultKey ScoreGameTeam) -- hteam id
+    (DefaultKey ScoreGame) -- game id
+    (DefaultKey ScoreGameTeam) -- vteam id
+    (DefaultKey ScoreGameTeam) -- hteam id
 
 
 -- * ScoreLocation