Commit 94a9600c by Jonathan Wakely Committed by Jonathan Wakely

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
parent c6f3b588
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> 2010-10-05 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/type_traits (_GLIBCXX_HAS_NESTED_TYPE): Add. * include/std/type_traits (_GLIBCXX_HAS_NESTED_TYPE): Add.
......
...@@ -405,11 +405,11 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -405,11 +405,11 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
/** /**
* @brief Parse input time string. * @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 * results into a user-supplied struct tm. The result is returned by
* calling time_get::do_get_time(). * 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 * be filled in accordingly and the returned iterator will point to the
* first character beyond the time string. If an error occurs before * first character beyond the time string. If an error occurs before
* the end, err |= ios_base::failbit. If parsing reads all the * the end, err |= ios_base::failbit. If parsing reads all the
...@@ -430,11 +430,11 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -430,11 +430,11 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
/** /**
* @brief Parse input date string. * @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 * results into a user-supplied struct tm. The result is returned by
* calling time_get::do_get_date(). * 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 * be filled in accordingly and the returned iterator will point to the
* first character beyond the date string. If an error occurs before * first character beyond the date string. If an error occurs before
* the end, err |= ios_base::failbit. If parsing reads all the * the end, err |= ios_base::failbit. If parsing reads all the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment