Fix typos in comments.

This commit is contained in:
Daniel Shahaf
2020-03-27 01:27:37 +00:00
parent d1802e388e
commit 5d139fcd94
2 changed files with 3 additions and 3 deletions

View File

@@ -29,8 +29,8 @@
# First of all, ensure predictable parsing.
typeset zsh_highlight__aliases="$(builtin alias -Lm '[^+]*')"
# In zsh <= 5.2, `alias -L` emits aliases that begin with a plus sign ('alias -- +foo=42')
# them without a '--' guard, so they don't round trip.
# In zsh <= 5.2, aliases that begin with a plus sign ('alias -- +foo=42')
# are emitted by `alias -L` without a '--' guard, so they don't round trip.
#
# Hence, we exclude them from unaliasing:
builtin unalias -m '[^+]*'