From 66f677e627917ea182662efdfc7ab4e37f93dfb2 Mon Sep 17 00:00:00 2001 From: Wes Downey Date: Wed, 30 Mar 2022 13:06:31 -0400 Subject: [PATCH] Fix typo --- TestComments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestComments.md b/TestComments.md index 07ac5511..644821e8 100644 --- a/TestComments.md +++ b/TestComments.md @@ -43,7 +43,7 @@ creating a mini-language inside Go. When you use `t.Run` to create a subtest, the first argument is used as a descriptive name for the test. To ensure that test results are legible to humans reading the logs, choose subtest names that will remain useful and readable -after escaping. (The test runnner replaces spaces with underscores, and it +after escaping. (The test runner replaces spaces with underscores, and it escapes non-printing characters). To [identify the inputs](#identify-the-input), use `t.Log` in the body of the