summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/concepts/step.md4
-rw-r--r--docs/docs/walkthroughs/create-a-recipe.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/concepts/step.md b/docs/docs/concepts/step.md
index 1758fdd8..1e1a0a65 100644
--- a/docs/docs/concepts/step.md
+++ b/docs/docs/concepts/step.md
@@ -60,10 +60,10 @@ Create and run an alembic migration
- `edited_file`:
-### WritePytestsStep
+### WritePytestsRecipe
Write unit tests for this file.
#### Parameters
-- for_filepath (required): the path of the file that unit tests should be created for \ No newline at end of file
+- for_filepath (required): the path of the file that unit tests should be created for
diff --git a/docs/docs/walkthroughs/create-a-recipe.md b/docs/docs/walkthroughs/create-a-recipe.md
index 0cf1892e..12dd3167 100644
--- a/docs/docs/walkthroughs/create-a-recipe.md
+++ b/docs/docs/walkthroughs/create-a-recipe.md
@@ -67,7 +67,7 @@ class CreatePytestsStep(Step):
code = await sdk.ide.readFile(self.input_file_path)
sdk.run_step(CreateDirStep(output_dir_path))
- sdk.run_step(WritePytestsStep(code, output_file_prefix, output_dir_path))
+ sdk.run_step(WritePytestsRecipe(code, output_file_prefix, output_dir_path))
```
### Adjust for different OS