From ef32839cd424d5cfb9e04e682673098ce738facb Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Thu, 30 Jul 2020 01:21:41 +0000 Subject: [PATCH] be explicit damn --- examples/incr/tea_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/incr/tea_test.go b/examples/incr/tea_test.go index bae97f3..ddac25d 100644 --- a/examples/incr/tea_test.go +++ b/examples/incr/tea_test.go @@ -20,7 +20,8 @@ func (test *testInt) Run(t *testing.T) { t.Logf("saving to future tests X = %d", test.X) } -// testIncr +// testIncr increments an integer and checks that the result of incrementing +// the integer is an expected value. type testIncr struct { // the "load" struct tag instructs tea to load the value of this field from // previous tests in this run. Like before, we also use a "save" tag.