diff --git a/docs/ctags.md b/docs/ctags.md index 53a60febb..cb0a0743e 100644 --- a/docs/ctags.md +++ b/docs/ctags.md @@ -129,7 +129,7 @@ Using only the meta-data in the map, GPT is able to: - 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. - - The `Coder` class looks complex enough that it decides to use a `MagickMock` + - Decide that the `Coder` class looks complex enough to use a `MagickMock`. ## Try it out diff --git a/examples/add-test.md b/examples/add-test.md index 6a05f6662..48da2eacf 100644 --- a/examples/add-test.md +++ b/examples/add-test.md @@ -15,7 +15,7 @@ Using only the meta-data in the map, GPT is able to: - 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. - - The `Coder` class looks complex enough that it decides to use a `MagickMock` + - Decide that the `Coder` class looks complex enough to use a `MagickMock`. The signature of `cmd_add()` doesn't have types, so GPT makes a reasonable but incorrect guess that it wants a `list` of files. The