diff --git a/README.md b/README.md index e5f1586..b5f2aa4 100644 --- a/README.md +++ b/README.md @@ -2225,7 +2225,7 @@ and when that result is non-nil, through the next form, etc. #### -some--> `(x &optional form &rest more)` -When expr in non-nil, thread it through the first form (via [`-->`](#---x-rest-forms)), +When expr is non-nil, thread it through the first form (via [`-->`](#---x-rest-forms)), and when that result is non-nil, through the next form, etc. ```el @@ -2658,8 +2658,8 @@ These combinators require Emacs 24 for its lexical scope. So they are offered in #### -partial `(fn &rest args)` -Takes a function `fn` and fewer than the normal arguments to `fn`, -and returns a fn that takes a variable number of additional `args`. +Take a function `fn` and fewer than the normal arguments to `fn`, +and return a fn that takes a variable number of additional `args`. When called, the returned function calls `fn` with `args` first and then additional args. diff --git a/dash.info b/dash.info index 23db1f0..0b20a41 100644 --- a/dash.info +++ b/dash.info @@ -1,4 +1,4 @@ -This is dash.info, produced by makeinfo version 6.5 from dash.texi. +This is dash.info, produced by makeinfo version 6.7 from dash.texi. This manual is for ‘dash.el’ version 2.12.1. @@ -2140,7 +2140,7 @@ File: dash.info, Node: Threading macros, Next: Binding, Prev: Tree operations ⇒ 106 -- Macro: -some--> (x &optional form &rest more) - When expr in non-nil, thread it through the first form (via ‘-->’ + When expr is non-nil, thread it through the first form (via ‘-->’ (*note -->::)), and when that result is non-nil, through the next form, etc. @@ -2574,8 +2574,8 @@ These combinators require Emacs 24 for its lexical scope. So they are offered in a separate package: ‘dash-functional‘. -- Function: -partial (fn &rest args) - Takes a function FN and fewer than the normal arguments to FN, - and returns a fn that takes a variable number of additional ARGS. + Take a function FN and fewer than the normal arguments to FN, and + return a fn that takes a variable number of additional ARGS. When called, the returned function calls FN with ARGS first and then additional args. @@ -3396,25 +3396,25 @@ Ref: !cons86589 Ref: !cdr86795 Node: Function combinators86990 Ref: -partial87264 -Ref: -rpartial87659 -Ref: -juxt88061 -Ref: -compose88493 -Ref: -applify89051 -Ref: -on89498 -Ref: -flip90024 -Ref: -const90336 -Ref: -cut90680 -Ref: -not91166 -Ref: -orfn91476 -Ref: -andfn91910 -Ref: -iteratefn92405 -Ref: -fixfn93108 -Ref: -prodfn94676 -Node: Development95745 -Node: Contribute96094 -Node: Changes96842 -Node: Contributors99841 -Node: Index101465 +Ref: -rpartial87657 +Ref: -juxt88059 +Ref: -compose88491 +Ref: -applify89049 +Ref: -on89480 +Ref: -flip90006 +Ref: -const90318 +Ref: -cut90662 +Ref: -not91148 +Ref: -orfn91458 +Ref: -andfn91892 +Ref: -iteratefn92387 +Ref: -fixfn93090 +Ref: -prodfn94659 +Node: Development95728 +Node: Contribute96077 +Node: Changes96825 +Node: Contributors99824 +Node: Index101448  End Tag Table diff --git a/dash.texi b/dash.texi index 9490aca..13b4a4a 100644 --- a/dash.texi +++ b/dash.texi @@ -3437,7 +3437,7 @@ and when that result is non-nil, through the next form, etc. @anchor{-some-->} @defmac -some--> (x &optional form &rest more) -When expr in non-nil, thread it through the first form (via @code{-->} (@pxref{-->})), +When expr is non-nil, thread it through the first form (via @code{-->} (@pxref{-->})), and when that result is non-nil, through the next form, etc. @example @@ -4034,8 +4034,8 @@ These combinators require Emacs 24 for its lexical scope. So they are offered in @anchor{-partial} @defun -partial (fn &rest args) -Takes a function @var{fn} and fewer than the normal arguments to @var{fn}, -and returns a fn that takes a variable number of additional @var{args}. +Take a function @var{fn} and fewer than the normal arguments to @var{fn}, +and return a fn that takes a variable number of additional @var{args}. When called, the returned function calls @var{fn} with @var{args} first and then additional args. diff --git a/readme-template.md b/readme-template.md index 9d29a2d..7520148 100644 --- a/readme-template.md +++ b/readme-template.md @@ -1,4 +1,8 @@ -# dash.el ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/magnars/dash.el/CI) +![GitHub Workflow Status](https://img.shields.io/github/workflow/status/magnars/dash.el/CI) +[![MELPA](https://melpa.org/packages/dash-badge.svg)](https://melpa.org/#/dash) +[![MELPA Stable](https://stable.melpa.org/packages/dash-badge.svg)](https://stable.melpa.org/#/dash) + +# dash.el A modern list api for Emacs. No 'cl required.