mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 12:45:00 +00:00
Update class docstrings to refer to "search/replace blocks" instead of "edit blocks"
This commit is contained in:
parent
0ff1c36668
commit
45af678026
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ from .editblock_prompts import EditBlockPrompts
|
||||||
|
|
||||||
|
|
||||||
class EditBlockCoder(Coder):
|
class EditBlockCoder(Coder):
|
||||||
"""A coder that uses edit blocks for code modifications."""
|
"""A coder that uses search/replace blocks for code modifications."""
|
||||||
edit_format = "diff"
|
edit_format = "diff"
|
||||||
gpt_prompts = EditBlockPrompts()
|
gpt_prompts = EditBlockPrompts()
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,6 @@ from .editblock_fenced_prompts import EditBlockFencedPrompts
|
||||||
|
|
||||||
|
|
||||||
class EditBlockFencedCoder(EditBlockCoder):
|
class EditBlockFencedCoder(EditBlockCoder):
|
||||||
"""A coder that uses fenced edit blocks for code modifications."""
|
"""A coder that uses fenced search/replace blocks for code modifications."""
|
||||||
edit_format = "diff-fenced"
|
edit_format = "diff-fenced"
|
||||||
gpt_prompts = EditBlockFencedPrompts()
|
gpt_prompts = EditBlockFencedPrompts()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue