From de17d8ea2926e35461248cfcca4c9a1dc9ce9924 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 9 Apr 2023 08:18:41 -0700 Subject: [PATCH] prompt --- prompts.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/prompts.py b/prompts.py index 203619956..e3bcdd599 100644 --- a/prompts.py +++ b/prompts.py @@ -16,16 +16,17 @@ new lines to replace the original chunk >>>>>>> UPDATED -Here is an example for how to just ADD lines to a file, without altering existing lines. -This anchors the location of the new code in the file by including 2-3 lines from the. +Here is an example for how to JUST add lines to a file, without altering any existing lines. +This anchors the location of the new code in the file by including a few lines from the original file. foo.py <<<<<<< ORIGINAL -def foo(a): - return a+a + result = cam.cnt() + return result ======= -def foo(a): - return a+a + result = cam.cnt() + return result + def bar(b): return b*b*b >>>>>>> UPDATED