From 95cbdaf433f18569ba6e28eb15e7fd21ff86c4a4 Mon Sep 17 00:00:00 2001 From: askeblad <74082607+askeblad@users.noreply.github.com> Date: Sun, 8 May 2022 13:21:41 -0500 Subject: [PATCH] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d6cb5a..8f13728 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ You can make a test case from an assertion by applying the `TestCase` constructo For example, `(TestCase (return ()))` is a test case that never fails, and `(TestCase (assertEqual "for x," 3 x))` is a test case that checks that the value of `x` is 3. Additional ways - to create test cases are described later under [Advanced Features](#advanced-eatures). + to create test cases are described later under [Advanced Features](#advanced-features). ### Tests