From fa4acb39cffa8b4bb9c9b761b4aa7e501af31fe6 Mon Sep 17 00:00:00 2001 From: mhagger Date: Sun, 27 Jun 2010 20:29:56 +0000 Subject: [PATCH] Fix comment. git-svn-id: http://cvs2svn.tigris.org/svn/cvs2svn/trunk@5213 be7e6eca-30d4-0310-a8e5-ac0d63af7087 --- cvs2svn_lib/rcs_stream.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cvs2svn_lib/rcs_stream.py b/cvs2svn_lib/rcs_stream.py index e7aa57e3..c045cf2d 100644 --- a/cvs2svn_lib/rcs_stream.py +++ b/cvs2svn_lib/rcs_stream.py @@ -47,17 +47,17 @@ def generate_edits(diff): """Generate edit commands from an RCS diff block. DIFF is a string holding an entire RCS file delta. Generate a tuple - (COMMAND, START, ARG) for each block implied by DIFF. Tuples + (COMMAND, INPUT_POS, ARG) for each block implied by DIFF. Tuples describe the ed commands: ('a', INPUT_POS, LINES) : add LINES at INPUT_POS. LINES is a list of strings. - ('d', INPUT_POS, COUNT) : delete COUNT input lines starting at line - START. + ('d', INPUT_POS, COUNT) : delete COUNT input lines starting at + line INPUT_POS. - In all cases, START is expressed as a zero-offset line number within - the input revision.""" + In all cases, INPUT_POS is expressed as a zero-offset line number + within the input revision.""" diff = msplit(diff) i = 0 -- 2.11.4.GIT