Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Dec 2017 16:04:47 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r51300 - in head: en_US.ISO8859-1/htdocs/cgi share/mk
Message-ID:  <201712121604.vBCG4lPR041137@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712121604.vBCG4lPR041137>