summaryrefslogtreecommitdiff
path: root/helm-source.el
diff options
context:
space:
mode:
authorTianxiang Xiong <tianxiang.xiong@gmail.com>2016-10-19 20:20:55 -0700
committerTianxiang Xiong <tianxiang.xiong@gmail.com>2016-10-19 20:20:55 -0700
commit56066306f2ebcc93eac266ca7753bed47be1e18e (patch)
tree2f90b6a215a6791b90dc5e11bab6420093fe6543 /helm-source.el
parentb63fcf64f08da293f79ed76a5a28ee3e3cd80ca5 (diff)
Use correct argument `candidate-transformer`
Diffstat (limited to 'helm-source.el')
-rw-r--r--helm-source.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-source.el b/helm-source.el
index facc342e..3e169a2c 100644
--- a/helm-source.el
+++ b/helm-source.el
@@ -255,11 +255,11 @@
" A transformer function that treat candidates one by one.
It is called with one arg the candidate.
It is faster than `filtered-candidate-transformer' or
- `candidates-transformer', but should be used only in sources
+ `candidate-transformer', but should be used only in sources
that recompute constantly their candidates, e.g `helm-source-find-files'.
Filtering happen early and candidates are treated
one by one instead of re-looping on the whole list.
- If used with `filtered-candidate-transformer' or `candidates-transformer'
+ If used with `filtered-candidate-transformer' or `candidate-transformer'
these functions should treat the candidates transformed by the
`filter-one-by-one' function in consequence.")