aboutsummaryrefslogtreecommitdiffstats
path: root/misc/w3c-validator.pl
diff options
context:
space:
mode:
Diffstat (limited to 'misc/w3c-validator.pl')
-rwxr-xr-xmisc/w3c-validator.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/w3c-validator.pl b/misc/w3c-validator.pl
index 76355ac..1947401 100755
--- a/misc/w3c-validator.pl
+++ b/misc/w3c-validator.pl
@@ -22,7 +22,7 @@
# sudo ./bin/fripost-panel restart
#
# Every HTML page will now be dumped into /tmp/fpanel/. Once you are done
-# browsing the RunModes,
+# browsing the RunModes,
# sudo chmod -R +r /tmp/fpanel/
# ./misc/w3c-validator.pl /tmp/fpanel/*.html
#
@@ -45,7 +45,7 @@ foreach my $html (@ARGV) {
if (defined $v->errors) {
my @errors = @{$v->errors};
foreach (@errors) {
- printf STDERR ( "line: %s, col: %s\n\terror: %s\n",
+ printf STDERR ( "line: %s, col: %s\n\terror: %s\n",
$_->line, $_->col,
$_->msg );
}
@@ -54,7 +54,7 @@ foreach my $html (@ARGV) {
elsif (@{$v->warnings}) {
my @warnings = @{$v->warnings};
foreach (@warnings) {
- printf STDERR ( "line: %s, col: %s\n\twarning: %s\n",
+ printf STDERR ( "line: %s, col: %s\n\twarning: %s\n",
$_->line, $_->col,
$_->msg );
}