From 1225912d3fbecc6350c3b1ef58bcb732ae12c2fb Mon Sep 17 00:00:00 2001 From: Joe Bloggs Date: Thu, 10 Jul 2014 22:31:34 +0100 Subject: [PATCH] Fix typo --- zsh-completions-howto.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh-completions-howto.org b/zsh-completions-howto.org index 4866d50..3444e2f 100644 --- a/zsh-completions-howto.org +++ b/zsh-completions-howto.org @@ -152,7 +152,7 @@ The _describe function can be used in an ACTION as part of a specification for _ In this case you will have to put it in braces with its arguments, e.g. 'TAG:DESCRIPTION:{_describe 'values' options}' ** Writing completion functions using _alternative Like _describe, this function performs simple completions where the order and position of options/arguments is not important. -However, unlike _describe, you can call execute shell code or call functions to obtain the completion candidates. +However, unlike _describe, you can execute shell code or call functions to obtain the completion candidates. As arguments it takes a list of specifications each in the form 'TAG:DESCRIPTION:ACTION' where TAG is a tag name, DESCRIPTION is a description, and ACTION is one of the action types listed previously (apart from the ->STRING and =ACTION forms).