Index: Jamfile =================================================================== RCS file: /cvsroot/boost/boost/Jamfile,v retrieving revision 1.17 diff -u -r1.17 Jamfile --- Jamfile 12 Aug 2004 06:13:36 -0000 1.17 +++ Jamfile 20 Feb 2005 23:06:41 -0000 @@ -49,7 +49,7 @@ Default; PREFIX/include --builddir=DIR Build in this location instead of building - within the distribution tree. Recomended! + within the distribution tree. Recommended! --stagedir=DIR When staging only, stage to the location. Default; ./stage Index: more/generic_programming.html =================================================================== RCS file: /cvsroot/boost/boost/more/generic_programming.html,v retrieving revision 1.24 diff -u -r1.24 generic_programming.html --- more/generic_programming.html 28 Nov 2004 04:34:09 -0000 1.24 +++ more/generic_programming.html 20 Feb 2005 23:06:41 -0000 @@ -75,7 +75,7 @@ not in an array? Perhaps it is in a linked list. Can we generalize the notion of copy to any sequence of elements? Looking at the body of memcpy(), the function's minimal requirements are - that it needs to to traverse through the sequence using some sort + that it needs to traverse through the sequence using some sort of pointer, access elements pointed to, write the elements to the destination, and compare pointers to know when to stop. The C++ standard library groups requirements such as these into