Boost logo

Boost-Commit :

From: mariano.consoni_at_[hidden]
Date: 2007-08-17 13:55:46


Author: mconsoni
Date: 2007-08-17 13:55:46 EDT (Fri, 17 Aug 2007)
New Revision: 38747
URL: http://svn.boost.org/trac/boost/changeset/38747

Log:

- spelling corrections.

Text files modified:
   sandbox/libs/reflection/doc/interpreter.qbk | 2 +-
   sandbox/libs/reflection/doc/tutorial1.qbk | 4 ++--
   2 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/libs/reflection/doc/interpreter.qbk
==============================================================================
--- sandbox/libs/reflection/doc/interpreter.qbk (original)
+++ sandbox/libs/reflection/doc/interpreter.qbk 2007-08-17 13:55:46 EDT (Fri, 17 Aug 2007)
@@ -23,7 +23,7 @@
 # Method call with parameters.
 
 Anyway this features are limited to one interface (car interface) and also
-constrainted by the number of parameters (mostly because of pattern matching
+constrained by the number of parameters (mostly because of pattern matching
 issues).
 
 To show the current syntax we think that the best is to show an example

Modified: sandbox/libs/reflection/doc/tutorial1.qbk
==============================================================================
--- sandbox/libs/reflection/doc/tutorial1.qbk (original)
+++ sandbox/libs/reflection/doc/tutorial1.qbk 2007-08-17 13:55:46 EDT (Fri, 17 Aug 2007)
@@ -105,7 +105,7 @@
 information to call the actual method.
 
 Using meta-level programming we are trying to achieve a flexibility that
-could be mined with that requeriments. Simply we don't have such information
+could be mined with that requirements. Simply we don't have such information
 most of the time. Because of that we implemented a second way to call methods.
 
 First we define a parameter_map. We will store there the possible parameters.
@@ -114,7 +114,7 @@
 ``
   boost::extension::parameter_map pm;
   pm.add<float, std::string>(.15f, "turn_angle");
- pm.add<int, std::string>(50, "aceleration");
+ pm.add<int, std::string>(50, "acceleration");
 ``
 
 Then we use this parameter_map to call the method and provide the needed


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk