diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2015-09-07 21:14:12 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2015-09-07 21:14:15 +0000 |
commit | 1cba80bf08dc9451e8643588fcb308030bb4c4ee (patch) | |
tree | 6e660fcb545d49b5cadbb8c1abc6beb8b613f9ad /Doc/Zsh/zle.yo | |
parent | bddd99d98a0031742b25785017981a6da89ca4bd (diff) | |
download | zsh-1cba80bf08dc9451e8643588fcb308030bb4c4ee.tar.gz zsh-1cba80bf08dc9451e8643588fcb308030bb4c4ee.tar.xz zsh-1cba80bf08dc9451e8643588fcb308030bb4c4ee.zip |
unposted: ZLE_STATE: fix obvious documentation typo.
Diffstat (limited to 'Doc/Zsh/zle.yo')
-rw-r--r-- | Doc/Zsh/zle.yo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo index 4e9369508..f450344ba 100644 --- a/Doc/Zsh/zle.yo +++ b/Doc/Zsh/zle.yo @@ -1018,7 +1018,7 @@ The substrings are sorted in alphabetical order so that if you want to test for two specific substrings in a future-proof way, you can do match by doing: -example(if [[ $ZLE_STATE == *insert*globalhistory* ]]; then ...; fi) +example(if [[ $ZLE_STATE == *globalhistory*insert* ]]; then ...; fi) ) enditem() |