From 232086b3b057ade410a8978b3bc47f1886763933 Mon Sep 17 00:00:00 2001 From: w08r <3176756+w08r@users.noreply.github.com> Date: Fri, 10 May 2024 08:10:19 +0100 Subject: [PATCH 1/2] Fix typo in --> docstring in dash.el (#414) Copyright-paperwork-exempt: yes --- dash.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dash.el b/dash.el index 059095b..ed2a859 100644 --- a/dash.el +++ b/dash.el @@ -2108,7 +2108,7 @@ last item in second form, etc." Insert X at the position signified by the symbol `it' in the first form. If there are more forms, insert the first form at the position -signified by `it' in in second form, etc." +signified by `it' in the second form, etc." (declare (debug (form body))) `(-as-> ,x it ,@forms)) From e6fbcb2966a1f2e8efd07b20e59439b69f2522c9 Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Fri, 10 May 2024 15:24:49 +0200 Subject: [PATCH 2/2] ; Regenerate docs (#414). --- README.md | 2 +- dash.texi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f457b5..83e15c0 100644 --- a/README.md +++ b/README.md @@ -2507,7 +2507,7 @@ Starting with the value of `x`, thread each expression through `forms`. Insert `x` at the position signified by the symbol `it` in the first form. If there are more forms, insert the first form at the position -signified by `it` in in second form, etc. +signified by `it` in the second form, etc. ```el (--> "def" (concat "abc" it "ghi")) ;; => "abcdefghi" diff --git a/dash.texi b/dash.texi index 6f512b0..4c9d07c 100644 --- a/dash.texi +++ b/dash.texi @@ -3778,7 +3778,7 @@ Starting with the value of @var{x}, thread each expression through @var{forms}. Insert @var{x} at the position signified by the symbol @code{it} in the first form. If there are more forms, insert the first form at the position -signified by @code{it} in in second form, etc. +signified by @code{it} in the second form, etc. @example @group