aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Doerfler <doerfler@techinfo.rwth-aachen.de>2005-06-06 10:00:34 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2005-06-06 10:00:34 +0000
commit50068e44dbcd09bfd732e0d78180bb3f8af27227 (patch)
tree01969b0bf5c3e9634bf84724036205e3538d986c
parent1f4174d400205c8750ea44780be7fefd4fd861ef (diff)
downloadgcc-50068e44dbcd09bfd732e0d78180bb3f8af27227.zip
gcc-50068e44dbcd09bfd732e0d78180bb3f8af27227.tar.gz
gcc-50068e44dbcd09bfd732e0d78180bb3f8af27227.tar.bz2
stl_function.h: ...
2005-06-06 Peter Doerfler <doerfler@techinfo.rwth-aachen.de> * include/bits/stl_function.h: ... and another one. From-SVN: r100657
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/bits/stl_function.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 2e1cdc0..442fb3f 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2005-06-06 Peter Doerfler <doerfler@techinfo.rwth-aachen.de>
+ * include/bits/stl_function.h: ... and another one.
+
+2005-06-06 Peter Doerfler <doerfler@techinfo.rwth-aachen.de>
+
* include/bits/stl_function.h: Fix typo in comment.
2005-06-05 Paolo Carlini <pcarlini@suse.de>
diff --git a/libstdc++-v3/include/bits/stl_function.h b/libstdc++-v3/include/bits/stl_function.h
index e72d7c1..fbd22c3 100644
--- a/libstdc++-v3/include/bits/stl_function.h
+++ b/libstdc++-v3/include/bits/stl_function.h
@@ -1,6 +1,6 @@
// Functor implementations -*- C++ -*-
-// Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@@ -360,7 +360,7 @@ namespace std
/** @defgroup s20_3_6_binder Binder Classes
* Binders turn functions/functors with two arguments into functors with
* a single argument, storing an argument to be applied later. For
- * example, an variable @c B of type @c binder1st is constructed from a
+ * example, a variable @c B of type @c binder1st is constructed from a
* functor @c f and an argument @c x. Later, B's @c operator() is called
* with a single argument @c y. The return value is the value of @c f(x,y).
* @c B can be "called" with various arguments (y1, y2, ...) and will in