svn commit: r51300 - in head: en_US.ISO8859-1/htdocs/cgi share/mk
Glen Barber
gjb at FreeBSD.org
Tue Dec 12 16:04:48 UTC 2017
Author: gjb
Date: Tue Dec 12 16:04:47 2017
New Revision: 51300
URL: https://svnweb.freebsd.org/changeset/doc/51300
Log:
Fix minor grammatical nits in error output.
Sponsored by: The FreeBSD Foundation
Modified:
head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi
head/share/mk/doc.docbook-dep.mk
Modified: head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi Tue Dec 12 15:25:54 2017 (r51299)
+++ head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi Tue Dec 12 16:04:47 2017 (r51300)
@@ -77,7 +77,7 @@ if ($file =~ m,^([0-9a-z/-]+|[0-9a-z/-]+\.[0-9a-z-]+)$
sub file_not_exists {
my $file = shift;
- print "File does not exists: $file\n";
+ print "File does not exist: $file\n";
exit;
}
Modified: head/share/mk/doc.docbook-dep.mk
==============================================================================
--- head/share/mk/doc.docbook-dep.mk Tue Dec 12 15:25:54 2017 (r51299)
+++ head/share/mk/doc.docbook-dep.mk Tue Dec 12 16:04:47 2017 (r51300)
@@ -19,7 +19,7 @@ _DOCBOOK_DEPS_SYSTEM != for i in $$(egrep '<!ENTITY [^
if [ -e $$i ]; then \
echo $i; \
else \
- echo "Warning: dep file $$(pwd)/$$i does not exists" >&2; \
+ echo "Warning: dep file $$(pwd)/$$i does not exist" >&2; \
fi; \
done
.endif
More information about the svn-doc-all
mailing list