diff options
author | Peter Stephenson <pws@zsh.org> | 2015-05-21 10:43:32 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-05-21 10:43:32 +0100 |
commit | a95f2c607113b3edd411499ff25ce79fba8a79de (patch) | |
tree | f41ce77092cbd22f2cfc560ad6e63990b6629e64 /Src | |
parent | afb78f5d142786169817709e6ec4c48637bcae93 (diff) | |
download | zsh-a95f2c607113b3edd411499ff25ce79fba8a79de.tar.gz zsh-a95f2c607113b3edd411499ff25ce79fba8a79de.tar.xz zsh-a95f2c607113b3edd411499ff25ce79fba8a79de.zip |
35250: Fix case documentation (SH_GLOB)
Diffstat (limited to 'Src')
-rw-r--r-- | Src/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/parse.c b/Src/parse.c index 053db3fe2..06cea744e 100644 --- a/Src/parse.c +++ b/Src/parse.c @@ -1183,7 +1183,7 @@ par_case(int *cmplx) * * The next token we get may be * - ")" or "|" if we're looking at an honest-to-god - * "case" patten, either because there's no opening + * "case" pattern, either because there's no opening * parenthesis, or because SH_GLOB is set and we * managed to grab an initial "(" to mark the start * of the case pattern. @@ -1196,7 +1196,7 @@ par_case(int *cmplx) * the string, so may be separated by whitespace. * So we quietly massage the whitespace and hope * no one noticed. This is horrible, but it's - * unfortunately too difficult to comine traditional + * unfortunately too difficult to combine traditional * zsh patterns with a properly parsed case pattern * without generating incompatibilities which aren't * all that popular (I've discovered). |