X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/495ae4b01f36d0d8bb0e34a1d7263c2b8224aa4a..d8ac03161cd960f2ad026e0a11c2614519c4a8be:/doc/doc-scripts/f2txt diff --git a/doc/doc-scripts/f2txt b/doc/doc-scripts/f2txt index ff5d70392..7fb7292a5 100755 --- a/doc/doc-scripts/f2txt +++ b/doc/doc-scripts/f2txt @@ -1,5 +1,4 @@ #!/usr/bin/perl -# $Cambridge: exim/doc/doc-scripts/f2txt,v 1.1 2004/10/07 15:04:35 ph10 Exp $ # Script to turn the Exim FAQ into plain ASCII. @@ -56,7 +55,7 @@ return $s; # We want to read the file paragraph by paragraph; Perl only does this if the # separating lines are truly blank. Having been caught by lines containing -# whitespace before, do a detrailing pass first. +# whitespace before, do a de-trailing pass first. open(IN, "$ARGV[0]") || die "can't open $ARGV[0] (preliminary)\n"; open(OUT, ">$ARGV[0]-$$") || die "can't open $ARGV[0]-$$\n"; @@ -83,7 +82,7 @@ while ($_ = ) next if /^\#\#/; - # If a paragraph begins ==> it is a display which must remain verbatin + # If a paragraph begins ==> it is a display which must remain verbatim # and not be reformatted. The flag gets turned into spaces. if ($_ =~ /^==>/)