From 3b3506d454fd37558d282a5893e607dbc4da4aeb Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 27 Feb 2005 17:28:24 +0000 Subject: [PATCH] Apply typo fixes from Julio M. Merino Vidal [SVN r27513] --- doc/tutorial/details.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/details.html b/doc/tutorial/details.html index 6328469..6116965 100644 --- a/doc/tutorial/details.html +++ b/doc/tutorial/details.html @@ -105,8 +105,8 @@ invoke a lambda expression, you should always pass it to to in lieu of using lambda and invoking the result "manually."
Lazy evaluation.
A strategy of delaying evaluation until a result is -required, thereby avoiding any unneccessary computation and any -associated unneccessary errors. Metafunctions are only invoked +required, thereby avoiding any unnecessary computation and any +associated unnecessary errors. Metafunctions are only invoked when we access their nested ::types, so we can supply all of their arguments without performing any computation and delay evaluation to the last possible moment.