From 34ee15b23cbedbad459be4613ed079530052f9fc Mon Sep 17 00:00:00 2001 From: gilch Date: Sun, 24 Dec 2023 12:10:06 -0700 Subject: [PATCH] Add see also links to ands and ors ands: all, when ors: any --- src/hissp/macros.lissp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hissp/macros.lissp b/src/hissp/macros.lissp index a4461b36e..0b6221f26 100644 --- a/src/hissp/macros.lissp +++ b/src/hissp/macros.lissp @@ -1566,7 +1566,7 @@ Hidden doctest adds bundled macros for REPL-consistent behavior. ... (42) 42 - See also: `ors`, `and`. + See also: `ors`, `and`, `all`, `when`. " (cond (not exprs) True (op#eq (len exprs) 1) (get#0 exprs) @@ -1619,7 +1619,7 @@ Hidden doctest adds bundled macros for REPL-consistent behavior. ... () () - See also: `ands`, `bool`, `or`. + See also: `ands`, `bool`, `or`, `any`. " (cond (op#eq (len exprs) 1) (get#0 exprs) exprs