From 106bb10cfe2f0fbe2889275f31668c6fc9690bdf Mon Sep 17 00:00:00 2001 From: Philipp Marek <philipp@marek.priv.at> Date: Sat, 27 Oct 2018 16:30:13 +0200 Subject: [PATCH] Change wording of WHEN-LET* docstring. --- binding.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/binding.lisp b/binding.lisp index 36d92bc..e4bee1f 100644 --- a/binding.lisp +++ b/binding.lisp @@ -71,12 +71,12 @@ or a list of bindings of the form: ... (variable-n initial-form-n)) -Each initial-form is executed in turn, and the variable bound to the -corresponding value. Initial-form expressions can refer to variables +Each INITIAL-FORM is executed in turn, and the variable bound to the +corresponding value. INITIAL-FORM expressions can refer to variables previously bound by the WHEN-LET*. -Execution of WHEN-LET* stops immediately if any initial-form evaluates to NIL. -If all initial-forms evaluate to true, then FORMS are executed as an implicit +Execution of WHEN-LET* stops immediately if any INITIAL-FORM evaluates to NIL. +If all INITIAL-FORMs evaluate to true, then FORMS are executed as an implicit PROGN." (let ((binding-list (if (and (consp bindings) (symbolp (car bindings))) (list bindings) -- GitLab