Commit 9536ca34 by Sylvain Pion Committed by Jonathan Wakely

stl_deque.h: Fix typo.

2002-12-20  Sylvain Pion   <Sylvain.Pion@mpi-sb.mpg.de>

	* include/bits/stl_deque.h: Fix typo.
	* include/bits/stl_list.h: Same.
	* include/bits/stl_map.h: Same.
	* include/bits/stl_multimap.h: Same.
	* include/bits/stl_queue.h: Same.
	* include/bits/stl_stack.h: Same.
	* include/bits/stl_vector.h: Same.

From-SVN: r60442
parent 88b5521b
2002-12-20 Sylvain Pion <Sylvain.Pion@mpi-sb.mpg.de>
* include/bits/stl_deque.h: Fix typo.
* include/bits/stl_list.h: Same.
* include/bits/stl_map.h: Same.
* include/bits/stl_multimap.h: Same.
* include/bits/stl_queue.h: Same.
* include/bits/stl_stack.h: Same.
* include/bits/stl_vector.h: Same.
2002-12-18 Benjamin Kosnik <bkoz@redhat.com> 2002-12-18 Benjamin Kosnik <bkoz@redhat.com>
* docs/html/documentation.html: Add link for debug.html. * docs/html/documentation.html: Add link for debug.html.
......
...@@ -1549,12 +1549,12 @@ namespace std ...@@ -1549,12 +1549,12 @@ namespace std
* @brief Deque ordering relation. * @brief Deque ordering relation.
* @param x A %deque. * @param x A %deque.
* @param y A %deque of the same type as @a x. * @param y A %deque of the same type as @a x.
* @return True iff @a x is lexographically less than @a y. * @return True iff @a x is lexicographically less than @a y.
* *
* This is a total ordering relation. It is linear in the size of the * This is a total ordering relation. It is linear in the size of the
* deques. The elements must be comparable with @c <. * deques. The elements must be comparable with @c <.
* *
* See std::lexographical_compare() for how the determination is made. * See std::lexicographical_compare() for how the determination is made.
*/ */
template <typename _Tp, typename _Alloc> template <typename _Tp, typename _Alloc>
inline bool operator<(const deque<_Tp, _Alloc>& __x, inline bool operator<(const deque<_Tp, _Alloc>& __x,
......
...@@ -1116,12 +1116,12 @@ namespace std ...@@ -1116,12 +1116,12 @@ namespace std
* @brief List ordering relation. * @brief List ordering relation.
* @param x A %list. * @param x A %list.
* @param y A %list of the same type as @a x. * @param y A %list of the same type as @a x.
* @return True iff @a x is lexographically less than @a y. * @return True iff @a x is lexicographically less than @a y.
* *
* This is a total ordering relation. It is linear in the size of the * This is a total ordering relation. It is linear in the size of the
* lists. The elements must be comparable with @c <. * lists. The elements must be comparable with @c <.
* *
* See std::lexographical_compare() for how the determination is made. * See std::lexicographical_compare() for how the determination is made.
*/ */
template<typename _Tp, typename _Alloc> template<typename _Tp, typename _Alloc>
inline bool inline bool
......
...@@ -610,12 +610,12 @@ namespace std ...@@ -610,12 +610,12 @@ namespace std
* @brief Map ordering relation. * @brief Map ordering relation.
* @param x A %map. * @param x A %map.
* @param y A %map of the same type as @a x. * @param y A %map of the same type as @a x.
* @return True iff @a x is lexographically less than @a y. * @return True iff @a x is lexicographically less than @a y.
* *
* This is a total ordering relation. It is linear in the size of the * This is a total ordering relation. It is linear in the size of the
* maps. The elements must be comparable with @c <. * maps. The elements must be comparable with @c <.
* *
* See std::lexographical_compare() for how the determination is made. * See std::lexicographical_compare() for how the determination is made.
*/ */
template <typename _Key, typename _Tp, typename _Compare, typename _Alloc> template <typename _Key, typename _Tp, typename _Compare, typename _Alloc>
inline bool inline bool
......
...@@ -584,12 +584,12 @@ namespace std ...@@ -584,12 +584,12 @@ namespace std
* @brief Multimap ordering relation. * @brief Multimap ordering relation.
* @param x A %multimap. * @param x A %multimap.
* @param y A %multimap of the same type as @a x. * @param y A %multimap of the same type as @a x.
* @return True iff @a x is lexographically less than @a y. * @return True iff @a x is lexicographically less than @a y.
* *
* This is a total ordering relation. It is linear in the size of the * This is a total ordering relation. It is linear in the size of the
* multimaps. The elements must be comparable with @c <. * multimaps. The elements must be comparable with @c <.
* *
* See std::lexographical_compare() for how the determination is made. * See std::lexicographical_compare() for how the determination is made.
*/ */
template <typename _Key, typename _Tp, typename _Compare, typename _Alloc> template <typename _Key, typename _Tp, typename _Compare, typename _Alloc>
inline bool inline bool
......
...@@ -228,12 +228,12 @@ namespace std ...@@ -228,12 +228,12 @@ namespace std
* @brief Queue ordering relation. * @brief Queue ordering relation.
* @param x A %queue. * @param x A %queue.
* @param y A %queue of the same type as @a x. * @param y A %queue of the same type as @a x.
* @return True iff @a x is lexographically less than @a y. * @return True iff @a x is lexicographically less than @a y.
* *
* This is an total ordering relation. Complexity and semantics depend on * This is an total ordering relation. Complexity and semantics depend on
* the underlying sequence type, but the expected rules are: this relation * the underlying sequence type, but the expected rules are: this relation
* is linear in the size of the sequences, the elements must be comparable * is linear in the size of the sequences, the elements must be comparable
* with @c <, and std::lexographical_compare() is usually used to make the * with @c <, and std::lexicographical_compare() is usually used to make the
* determination. * determination.
*/ */
template <typename _Tp, typename _Sequence> template <typename _Tp, typename _Sequence>
......
...@@ -209,12 +209,12 @@ namespace std ...@@ -209,12 +209,12 @@ namespace std
* @brief Stack ordering relation. * @brief Stack ordering relation.
* @param x A %stack. * @param x A %stack.
* @param y A %stack of the same type as @a x. * @param y A %stack of the same type as @a x.
* @return True iff @a x is lexographically less than @a y. * @return True iff @a x is lexicographically less than @a y.
* *
* This is an total ordering relation. Complexity and semantics depend on * This is an total ordering relation. Complexity and semantics depend on
* the underlying sequence type, but the expected rules are: this relation * the underlying sequence type, but the expected rules are: this relation
* is linear in the size of the sequences, the elements must be comparable * is linear in the size of the sequences, the elements must be comparable
* with @c <, and std::lexographical_compare() is usually used to make the * with @c <, and std::lexicographical_compare() is usually used to make the
* determination. * determination.
*/ */
template <typename _Tp, typename _Seq> template <typename _Tp, typename _Seq>
......
...@@ -943,12 +943,12 @@ namespace std ...@@ -943,12 +943,12 @@ namespace std
* @brief Vector ordering relation. * @brief Vector ordering relation.
* @param x A %vector. * @param x A %vector.
* @param y A %vector of the same type as @a x. * @param y A %vector of the same type as @a x.
* @return True iff @a x is lexographically less than @a y. * @return True iff @a x is lexicographically less than @a y.
* *
* This is a total ordering relation. It is linear in the size of the * This is a total ordering relation. It is linear in the size of the
* vectors. The elements must be comparable with @c <. * vectors. The elements must be comparable with @c <.
* *
* See std::lexographical_compare() for how the determination is made. * See std::lexicographical_compare() for how the determination is made.
*/ */
template<typename _Tp, typename _Alloc> template<typename _Tp, typename _Alloc>
inline bool inline bool
......
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