diff --git a/MultiPassInputIterator.html b/MultiPassInputIterator.html index f2a854b..6e66916 100644 --- a/MultiPassInputIterator.html +++ b/MultiPassInputIterator.html @@ -85,7 +85,7 @@ Once that is done we can drop Multi-Pass Input Iterator.
Copyright © 2000 -Jeremy Siek, Univ.of Notre Dame (jsiek@lsc.nd.edu) +Jeremy Siek, Univ.of Notre Dame (jsiek@lsc.nd.edu)
diff --git a/iterator_adaptors.htm b/iterator_adaptors.htm index 937ec3a..ecc2aeb 100644 --- a/iterator_adaptors.htm +++ b/iterator_adaptors.htm @@ -93,7 +93,7 @@ Function Output Iterator Adaptor -

Dave +

Dave Abrahams started the library, applying policy class technique and handling const/non-const iterator interactions. He also contributed the @@ -611,10 +611,10 @@ int main(int, char*[]) { int x[] = { 1, 2, 3, 4, 5, 6, 7, 8 }; const int N = sizeof(x)/sizeof(int); - std::cout << "multiplying the array by 2:" << std::endl; + std::cout << "multiplying the array by 2:" << std::endl; std::copy(boost::make_transform_iterator(x, std::bind1st(std::multiplies<int>(), 2)), boost::make_transform_iterator(x + N, std::bind1st(std::multiplies<int>(), 2)), - std::ostream_iterator<int>(std::cout, " ")); + std::ostream_iterator<int>(std::cout, " ")); std::cout << std::endl; return 0; } @@ -860,7 +860,7 @@ bool operator==(const iterator_adaptor<B1,P,V1,R1,P1,C,D>&,


Revised - 12 Jul 2001 + 20 Aug 2001

© Copyright Dave Abrahams and Jeremy Siek 2001. Permission to copy, diff --git a/tie.html b/tie.html index 933ebd3..eaef0fe 100644 --- a/tie.html +++ b/tie.html @@ -126,7 +126,7 @@ The output is:
Copyright © 2000 -Jeremy Siek, +Jeremy Siek, Univ.of Notre Dame (jsiek@lsc.nd.edu)
Lie-Quan Lee, Univ.of Notre Dame (llee1@lsc.nd.edu)