From da3675fca64f73ef9583bcc02e61a3907a767ac5 Mon Sep 17 00:00:00 2001 From: Charley Xiao <59205189+Charley-xiao@users.noreply.github.com> Date: Tue, 14 Jan 2025 17:00:42 +0800 Subject: [PATCH] fix: fix typo in gen_patch_prompt.py --- SRepair/src/gen_patch_prompt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SRepair/src/gen_patch_prompt.py b/SRepair/src/gen_patch_prompt.py index 047c0aa..ea4f5fa 100755 --- a/SRepair/src/gen_patch_prompt.py +++ b/SRepair/src/gen_patch_prompt.py @@ -3,7 +3,7 @@ fixed_label = '// Fixed Function' mf_start_prompt = 'This bug consists of multiple interdependent buggy functions, meaning that fix should be achieved by simultaneously modifying these functions.' -mf_end_prompt = 'Povide fixed function for each buggy functions. Your output should be strictly in the format \'Function ID: {ID}\\nFixed function code:\\n{fixed function code}\' without any other content' +mf_end_prompt = 'Provide fixed function for each buggy function. Your output should be strictly in the format \'Function ID: {ID}\\nFixed function code:\\n{fixed function code}\' without any other content.' def sf_build_apr_prompt_auto(buggy_function, root_cause, suggestion): @@ -28,4 +28,4 @@ def mf_build_apr_prompt_auto(bug_info, root_cause, suggestions): parts.append(bug_info['functions'][int(function_id) - 1]['buggy_function']) parts.append('\n') parts.append(mf_end_prompt) - return '\n'.join(parts) \ No newline at end of file + return '\n'.join(parts)