1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-01 05:16:05 +01:00

40119: correct typo in comment

This commit is contained in:
Oliver Kiddle 2016-12-08 23:55:53 +01:00
parent ece90dae42
commit 7630215ba0
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
2016-12-08 Oliver Kiddle <opk@zsh.org> 2016-12-08 Oliver Kiddle <opk@zsh.org>
* c.f. 40119: Src/zsh.h: correct typo in comment
* 40114: Completion/Zsh/Context/_brace_parameter: complete * 40114: Completion/Zsh/Context/_brace_parameter: complete
:/ with other parameter operators :/ with other parameter operators

View file

@ -1589,8 +1589,8 @@ struct zpc_disables_save {
struct zpc_disables_save *next; struct zpc_disables_save *next;
/* /*
* Bit vector of ZPC_COUNT disabled characters. * Bit vector of ZPC_COUNT disabled characters.
* We'll live dangerously and assumed ZPC_COUNT is no greater * We'll live dangerously and assume ZPC_COUNT is no greater
* than the number of bits an unsigned int. * than the number of bits in an unsigned int.
*/ */
unsigned int disables; unsigned int disables;
}; };