From: Fabian Keil <fk@fabiankeil.de>
Date: Sat, 2 Mar 2013 14:38:20 +0000 (+0000)
Subject: Fix typo
X-Git-Tag: v_3_0_21~25
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/developer-manual/faq/static/@default-cgi@send-stylesheet?a=commitdiff_plain;h=ff77a36a5a8a7d92a90a2d9cf9f3cf27b0925132;p=privoxy.git

Fix typo
---

diff --git a/utils/filter2docs.pl b/utils/filter2docs.pl
index b80348c2..cd8c8b4c 100755
--- a/utils/filter2docs.pl
+++ b/utils/filter2docs.pl
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: filter2docs.pl,v 1.5 2008/05/12 09:31:36 fabiankeil Exp $
+# $Id: filter2docs.pl,v 1.6 2009/01/13 16:48:09 fabiankeil Exp $
 # $Source: /cvsroot/ijbswa/current/utils/filter2docs.pl,v $
 
 # Parse the filter names and descriptions from a filter file and
@@ -15,7 +15,7 @@ my (%comment_lines, %action_lines, %sgml_source_1, %sgml_source_2);
 sub main() {
 
     die "Usage: $0 filter-file\n" unless (@ARGV == 1) ;
-    open(INPUT, "< $ARGV[0]") or die "Coudln't open input file $ARGV[0] because $!\n";
+    open(INPUT, "< $ARGV[0]") or die "Couldn't open input file $ARGV[0]: $!\n";
 
     parse_file();
     print_markup();