summaryrefslogtreecommitdiff
path: root/doc/doc-scripts
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-01-18 11:30:26 -0500
committerPhil Pennock <pdp@exim.org>2017-01-18 11:30:26 -0500
commit4c04137d73637107669e02b21f890387aaa2ef34 (patch)
tree9c3f7724dc5b4eb10b51beae1983cbc6398f015d /doc/doc-scripts
parent5dc309a45b3f266afbe1b8ccc9a066b0f76650a3 (diff)
downloadexim4-4c04137d73637107669e02b21f890387aaa2ef34.tar.gz
214 spelling fixes
Diffstat (limited to 'doc/doc-scripts')
-rwxr-xr-xdoc/doc-scripts/f2h4
-rwxr-xr-xdoc/doc-scripts/f2txt4
-rwxr-xr-xdoc/doc-scripts/fc2k2
-rwxr-xr-xdoc/doc-scripts/g2t2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/doc-scripts/f2h b/doc/doc-scripts/f2h
index 6e53480bb..221a80194 100755
--- a/doc/doc-scripts/f2h
+++ b/doc/doc-scripts/f2h
@@ -83,7 +83,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";
@@ -298,7 +298,7 @@ while ($_ = <IN>)
next;
}
- # 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 ($_ =~ /^==>/)
diff --git a/doc/doc-scripts/f2txt b/doc/doc-scripts/f2txt
index 4f24f7b3f..7fb7292a5 100755
--- a/doc/doc-scripts/f2txt
+++ b/doc/doc-scripts/f2txt
@@ -55,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";
@@ -82,7 +82,7 @@ while ($_ = <IN>)
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 ($_ =~ /^==>/)
diff --git a/doc/doc-scripts/fc2k b/doc/doc-scripts/fc2k
index 0b977fc87..a1a3537ad 100755
--- a/doc/doc-scripts/fc2k
+++ b/doc/doc-scripts/fc2k
@@ -213,7 +213,7 @@ while (<IN>)
# We want to chop excessively long entries on either side. We can't set
# a fixed length because of the HTML control data. Call a function to
# add the given length to allow for HTML stuff. This is crude, but it
- # does roughtly the right thing.
+ # does roughly the right thing.
my($leftlen) = &setlen(70, $pretext);
my($rightlen) = &setlen(70, $posttext);
diff --git a/doc/doc-scripts/g2t b/doc/doc-scripts/g2t
index 2f2ac449b..c840ac64f 100755
--- a/doc/doc-scripts/g2t
+++ b/doc/doc-scripts/g2t
@@ -725,7 +725,7 @@ while (<>)
# "-". If we triple it in the menu it gets displayed OK, but building
# software complains about non-existent cross references etc.
- # I have gone for the horrid kludge of turning it into "-<hyhen>"
+ # I have gone for the horrid kludge of turning it into "-<hyphen>"
# in the menus and nodes.
# Exim 4 has added --help, which has the same problem.