about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2001-06-28 11:25:41 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-06-28 11:25:41 +0000
commita25c40c6a06425d99b4816c62ccb33cfa76cd397 (patch)
treefed1a23eb4ddaaebd1014f7c08d99546df5208e8
parent45c1cee848faf8bdb1f9db545516d7a98c50c749 (diff)
downloadzsh-a25c40c6a06425d99b4816c62ccb33cfa76cd397.tar.gz
zsh-a25c40c6a06425d99b4816c62ccb33cfa76cd397.tar.xz
zsh-a25c40c6a06425d99b4816c62ccb33cfa76cd397.zip
update for test file renaming and fix typos
-rw-r--r--ChangeLog2
-rw-r--r--Etc/zsh-development-guide2
-rw-r--r--Test/B01cd.ztst6
3 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2656e0fbf..c7b409850 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2001-06-28  Oliver Kiddle  <opk@zsh.org>
 
+	* unposted: Etc/zsh-development-guide, Test/B01cd.ztst: fix typos
+
 	* 15159: Completion/X/Command/_vnc: fix for two digit display numbers,
 	use _values for -encodings option and complete for xvncviewer
 
diff --git a/Etc/zsh-development-guide b/Etc/zsh-development-guide
index 6917621b2..cba2beaed 100644
--- a/Etc/zsh-development-guide
+++ b/Etc/zsh-development-guide
@@ -64,7 +64,7 @@ Testing
   a wide range of human and artificial life, it is very difficult to
   test the shell thoroughly.  For this purpose, the Test subdirectory
   exists.  It consists of a driver script (ztst.zsh) and various test
-  files (*.ztst) in a format which is described in 50cd.ztst, which acts
+  files (*.ztst) in a format which is described in B01cd.ztst, which acts
   as a template.  It is designed to make it easy to provide input to
   chunks of shell code and to test the corresponding standard output,
   error output and exit status.
diff --git a/Test/B01cd.ztst b/Test/B01cd.ztst
index d5836ec94..f6c9fc88f 100644
--- a/Test/B01cd.ztst
+++ b/Test/B01cd.ztst
@@ -1,5 +1,5 @@
 # This file serves as a model for how to write tests, so is more heavily
-# commented that the others.  All tests are run in the Test subdirectory
+# commented than the others.  All tests are run in the Test subdirectory
 # of the distribution, which must be writable.  They should end with
 # the suffix `.ztst': this is not required by the test harness itself,
 # but it is needed by the Makefile to run all the tests.
@@ -54,7 +54,7 @@
 #
 # The rules for '<', '>' and '?' lines are the same: only the first
 # character is stripped, with subsequent whitespace being significant;
-# lines are not subject to any substitution unless the `q' flags (see
+# lines are not subject to any substitution unless the `q' flag (see
 # below) is set.
 #
 # Each chunk of indented code is to be evaluated in one go and is to
@@ -63,7 +63,7 @@
 # irrelevant.  An optional set of single-letter flags follows the status
 # or -.  The following are understood:
 #   d   Don't diff stdout against the expected stdout.
-#   D   Don't diff stderr agsinst the expected stderr.
+#   D   Don't diff stderr against the expected stderr.
 #   q   All redirection lines given in the test script (not the lines
 #       actually produced by the test) are subject to ordinary quoted shell
 #       expansion (i.e. not globbing).