From 7f77f987c147d5a543aba5eae5d9d271facbc64f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Tue, 2 Aug 2005 17:43:37 +0000 Subject: [PATCH] Fixed typos in comments [SVN r30381] --- include/boost/lambda/detail/lambda_functor_base.hpp | 4 ++-- include/boost/lambda/detail/lambda_fwd.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/lambda/detail/lambda_functor_base.hpp b/include/boost/lambda/detail/lambda_functor_base.hpp index cc4d71c..90f5134 100644 --- a/include/boost/lambda/detail/lambda_functor_base.hpp +++ b/include/boost/lambda/detail/lambda_functor_base.hpp @@ -27,7 +27,7 @@ public: typedef T element_t; - // take all parameters as const rererences. Note that non-const references + // take all parameters as const references. Note that non-const references // stay as they are. typedef typename boost::add_reference< typename boost::add_const::type @@ -317,7 +317,7 @@ public: }; -// These specializatoins provide a shorter notation to define actions. +// These specializations provide a shorter notation to define actions. // These lambda_functor_base instances take care of the recursive evaluation // of the arguments and pass the evaluated arguments to the apply function // of an action class. To make action X work with these classes, one must diff --git a/include/boost/lambda/detail/lambda_fwd.hpp b/include/boost/lambda/detail/lambda_fwd.hpp index a1a02a2..363c364 100644 --- a/include/boost/lambda/detail/lambda_fwd.hpp +++ b/include/boost/lambda/detail/lambda_fwd.hpp @@ -65,7 +65,7 @@ void do_nothing(A1&, A2&, A3&, A4&) {} } // lambda } // boost -// prevent the warnings from unused argumetns +// prevent the warnings from unused arguments #define CALL_USE_ARGS \ ::boost::lambda::detail::do_nothing(a, b, c, env)