From 9e5d39285806408ae8a6ba13d03261cb7d8000d0 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sat, 2 Jul 2016 18:21:12 -0700 Subject: [PATCH] tournament: clarify behavior on invalid lines (ignore) "Only accept" was a bit vague - this commit changes the mesage to say that invalid line are ignored, and the tournament scored without them. This is in line with the behavior of all current tracks. If reviewers wish a change to this behavior, we can discuss that in a separate PR. (Note that the go track is an exception, but it clearly states it is an exception in its test suite visible to students) Closes #286 Closes https://github.com/exercism/xrust/issues/122 --- tournament.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tournament.md b/tournament.md index 176a3b144c..741fcbdd65 100644 --- a/tournament.md +++ b/tournament.md @@ -61,4 +61,7 @@ Devastating Donkeys;Courageous Californians;draw Means that the Devastating Donkeys and Courageous Californians tied. -Your program should only accept inputs that follow this format. +Your program should only process input lines that follow this format. +All other lines should be ignored: +If an input contains both valid and invalid input lines, +output a table that contains just the results from the valid lines.