aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2010-10-05 20:58:59 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2010-10-05 21:58:59 +0100
commit94a9600ce3147de36fdd06dba2e3cae693a21b4d (patch)
tree50f48141b19208ddad9255b9f207cb38b2a5ee4d
parentc6f3b5880ebe6b5359703cb43acb1cec6273f62d (diff)
downloadgcc-94a9600ce3147de36fdd06dba2e3cae693a21b4d.zip
gcc-94a9600ce3147de36fdd06dba2e3cae693a21b4d.tar.gz
gcc-94a9600ce3147de36fdd06dba2e3cae693a21b4d.tar.bz2
locale_facets_nonio.h (time_get::get_time): Doc typo.
2010-10-05 Jonathan Wakely <jwakely.gcc@gmail.com> * include/bits/locale_facets_nonio.h (time_get::get_time): Doc typo. (time_get::get_date): Likewise. From-SVN: r165002
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/locale_facets_nonio.h8
2 files changed, 9 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index b6c4aca..ef4ad4d 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2010-10-05 Jonathan Wakely <jwakely.gcc@gmail.com>
+
+ * include/bits/locale_facets_nonio.h (time_get::get_time): Doc typo.
+ (time_get::get_date): Likewise.
+
2010-10-05 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/type_traits (_GLIBCXX_HAS_NESTED_TYPE): Add.
diff --git a/libstdc++-v3/include/bits/locale_facets_nonio.h b/libstdc++-v3/include/bits/locale_facets_nonio.h
index fdc810d..fdff7f5 100644
--- a/libstdc++-v3/include/bits/locale_facets_nonio.h
+++ b/libstdc++-v3/include/bits/locale_facets_nonio.h
@@ -405,11 +405,11 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
/**
* @brief Parse input time string.
*
- * This function parses a time according to the format @a x and puts the
+ * This function parses a time according to the format @a X and puts the
* results into a user-supplied struct tm. The result is returned by
* calling time_get::do_get_time().
*
- * If there is a valid time string according to format @a x, @a tm will
+ * If there is a valid time string according to format @a X, @a tm will
* be filled in accordingly and the returned iterator will point to the
* first character beyond the time string. If an error occurs before
* the end, err |= ios_base::failbit. If parsing reads all the
@@ -430,11 +430,11 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
/**
* @brief Parse input date string.
*
- * This function parses a date according to the format @a X and puts the
+ * This function parses a date according to the format @a x and puts the
* results into a user-supplied struct tm. The result is returned by
* calling time_get::do_get_date().
*
- * If there is a valid date string according to format @a X, @a tm will
+ * If there is a valid date string according to format @a x, @a tm will
* be filled in accordingly and the returned iterator will point to the
* first character beyond the date string. If an error occurs before
* the end, err |= ios_base::failbit. If parsing reads all the