From 54ccda71c8604c369e48e22209481f465099cec5 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 5 Jul 2023 01:19:26 +0900 Subject: [PATCH] Fix typo in add-test.md InputOuput -> InputOutput --- examples/add-test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/add-test.md b/examples/add-test.md index 401183474..06188d2ba 100644 --- a/examples/add-test.md +++ b/examples/add-test.md @@ -16,7 +16,7 @@ In detail, GPT is able to use the repo map to: - Find the function signature of the `cmd_add()` function which the user wants a test case for. - Determine that it is a method of the `Command` class, so the test case will need to instantiate an instance to conduct the test. - Identify that creating a `Command` instance requires passing in `InputOutput` and `Coder` instances. - - Figure out the arguments required to instantiate the `InputOuput` instance. + - Figure out the arguments required to instantiate the `InputOutput` instance. - Decide that the `Coder` class looks complex enough to use a `MagickMock`. The `cmd_add()` method is defined without type annotations, so GPT makes a