aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Doerfler <doerfler@techinfo.rwth-aachen.de>2005-06-06 09:21:07 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2005-06-06 09:21:07 +0000
commit5380bc7e61010bf0aebf1124eeff6a61be4c7137 (patch)
tree439ea6234571bc7f0b54248680726624495f7cf1
parentc8891bef494c6868b9a26a2ce8f553c3e04f9b00 (diff)
downloadgcc-5380bc7e61010bf0aebf1124eeff6a61be4c7137.zip
gcc-5380bc7e61010bf0aebf1124eeff6a61be4c7137.tar.gz
gcc-5380bc7e61010bf0aebf1124eeff6a61be4c7137.tar.bz2
stl_function.h: Fix typo in comment.
2005-06-06 Peter Doerfler <doerfler@techinfo.rwth-aachen.de> * include/bits/stl_function.h: Fix typo in comment. From-SVN: r100654
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/bits/stl_function.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 4f5d935..2e1cdc0 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,7 @@
+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>
* acinclude.m4 ([GLIBCXX_ENABLE_C99]): Check clog, clogf, clogl
diff --git a/libstdc++-v3/include/bits/stl_function.h b/libstdc++-v3/include/bits/stl_function.h
index 74ddcce..e72d7c1 100644
--- a/libstdc++-v3/include/bits/stl_function.h
+++ b/libstdc++-v3/include/bits/stl_function.h
@@ -88,7 +88,7 @@ namespace std
* \endcode
* The addition and negation functions will be inlined directly.
*
- * The standard functiors are derived from structs named @c unary_function
+ * The standard functors are derived from structs named @c unary_function
* and @c binary_function. These two classes contain nothing but typedefs,
* to aid in generic (template) programming. If you write your own
* functors, you might consider doing the same.