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)