branch: elpa/llama commit 16deae1d87fea8616ace265f8347472cfffb1b29 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Fix typos --- README.md | 2 +- llama.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 652058f926..75c89219c9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ to add syntax were met with determined pushback and the use of a macro was suggested as an alternative. The `##` macro, whose signature is `(## FN &rest args)`, expands -to a `lambda` expressions, which wraps around its arguments. +to a `lambda` expression, which wraps around its arguments. This `lambda` expression calls the function FN with arguments ARGS and returns its value. Its own arguments are derived from diff --git a/llama.el b/llama.el index 50f9d4e269..a52f20d504 100644 --- a/llama.el +++ b/llama.el @@ -32,7 +32,7 @@ ;; macro was suggested as an alternative. ;; The `##' macro, whose signature is (## FN &rest args), expands -;; to a `lambda' expressions, which wraps around its arguments. +;; to a `lambda' expression, which wraps around its arguments. ;; This `lambda' expression calls the function FN with arguments ;; ARGS and returns its value. Its own arguments are derived from @@ -86,7 +86,7 @@ specifies an argument. Each symbol from `&1' through `&9', which appears in ARGS, specifies an optional argument. All arguments following an optional argument have to be optional as well, thus their names have to begin with `&'. Symbol `&*' specifies extra -(`&rest') arguments. +\(`&rest') arguments. Instead of `%1', the shorthand `%' can be used; but that should only be done if it is the only argument, and using both `%1' and