From b392045e6f37610a79c891db1529ae5f6ad752d7 Mon Sep 17 00:00:00 2001 From: Daniel Shahaf Date: Mon, 24 Jan 2022 07:57:33 +0000 Subject: [PATCH] driver: Simplify grammar of a comment. No functional change. --- zsh-syntax-highlighting.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh-syntax-highlighting.zsh b/zsh-syntax-highlighting.zsh index 14f6e1f..2b42910 100644 --- a/zsh-syntax-highlighting.zsh +++ b/zsh-syntax-highlighting.zsh @@ -73,8 +73,8 @@ _zsh_highlight__is_function_p() { # This function takes a single argument F and returns True iff F denotes the # name of a callable function. A function is callable if it is fully defined # or if it is marked for autoloading and autoloading it at the first call to it -# will succeed. In particular, if a function has been marked for autoloading -# but is not available in $fpath, then this function will return False therefor. +# will succeed. In particular, if F has been marked for autoloading +# but is not available in $fpath, then calling this function on F will return False. # # See users/21671 http://www.zsh.org/cgi-bin/mla/redirect?USERNUMBER=21671 _zsh_highlight__function_callable_p() {