This commit is contained in:
Paul Gauthier 2023-06-27 18:59:15 -07:00
parent 582143d563
commit 2358b638b8

View file

@ -30,7 +30,7 @@ class EditBlockFunctionCoder(Coder):
type="object", type="object",
required=["path", "original_lines", "updated_lines"], required=["path", "original_lines", "updated_lines"],
properties=dict( properties=dict(
file_path=dict( path=dict(
type="string", type="string",
description="Path of file to edit", description="Path of file to edit",
), ),
@ -38,7 +38,7 @@ class EditBlockFunctionCoder(Coder):
type="string", type="string",
description=( description=(
( (
"Portion of the original file, including all" "Lines from the original file, including all"
" whitespace, newlines, without skipping any lines" " whitespace, newlines, without skipping any lines"
), ),
), ),