From e740d374a98479e2478ed3e8e720f58787257edb Mon Sep 17 00:00:00 2001 From: Raphael Ackermann Date: Sun, 4 Apr 2010 11:58:34 +0000 Subject: [PATCH] doc typos svn: r15026 --- src/plugins/docgen/RTFDoc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/docgen/RTFDoc.py b/src/plugins/docgen/RTFDoc.py index 8110927f2..c7740f748 100644 --- a/src/plugins/docgen/RTFDoc.py +++ b/src/plugins/docgen/RTFDoc.py @@ -56,7 +56,7 @@ def twips(cm): #------------------------------------------------------------------------ # -# Rich Text Format Document interface. The current inteface does not +# Rich Text Format Document interface. The current interface does not # use style sheets. Instead it writes raw formatting. # #------------------------------------------------------------------------ @@ -417,8 +417,8 @@ class RTFDoc(BaseDoc,TextDoc): # Replace all LF's with space and reformat. line = line.replace('\n',' ') line = ' '.join(line.split()) - # If rememberd first char is LF, insert in front of lines - #This takes care of the case with even number of empry lines. + # If remembered first char is LF, insert in front of lines + #This takes care of the case with even number of empty lines. if firstchar == '\n': line = firstchar + line #Insert LF's if not first line.