aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/eval.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/eval.texi b/doc/lispref/eval.texi
index 74fefdb71bc..0f9f301547a 100644
--- a/doc/lispref/eval.texi
+++ b/doc/lispref/eval.texi
@@ -887,10 +887,10 @@ particular elements, like this:
887 887
888 888
889 Sometimes it is useful to delay the evaluation of an expression, for 889 Sometimes it is useful to delay the evaluation of an expression, for
890example if you want to avoid to perform a time-consuming calculation 890example if you want to avoid performing a time-consuming calculation
891in the case that it turns out that the result is not needed in the 891if it turns out that the result is not needed in the future of the
892future of the program. Therefore, the @file{thunk} library provides 892program. The @file{thunk} library provides the following functions
893the following functions and macros: 893and macros to support such @dfn{deferred evaluation}:
894 894
895@cindex thunk 895@cindex thunk
896@defmac thunk-delay forms@dots{} 896@defmac thunk-delay forms@dots{}