stl_deque.h: Fix misspelling of `Create' as `Creats'.
authorMatt Kraai <kraai@gcc.gnu.org>
Thu, 11 Jul 2002 04:43:15 +0000 (04:43 +0000)
committerMatt Kraai <kraai@gcc.gnu.org>
Thu, 11 Jul 2002 04:43:15 +0000 (04:43 +0000)
* include/bits/stl_deque.h: Fix misspelling of `Create' as `Creats'.
* include/bits/stl_list.h: Likewise.
* include/bits/stl_map.h: Likewise.
* include/bits/stl_multimap.h: Likewise.
* include/bits/stl_vector.h: Likewise.

From-SVN: r55388

libstdc++-v3/include/bits/stl_deque.h
libstdc++-v3/include/bits/stl_list.h
libstdc++-v3/include/bits/stl_map.h
libstdc++-v3/include/bits/stl_multimap.h
libstdc++-v3/include/bits/stl_vector.h

index 6eb6a8c17405fb39c85a6b4755ce6c98dcec47e7..c7fab2d4fb8eac1ce37bb700e9b35071f623ca3a 100644 (file)
@@ -729,7 +729,7 @@ public:
    *  @param  first  An input iterator.
    *  @param  last  An input iterator.
    * 
-   *  Creats a %deque consisting of copies of the elements from [first,last).
+   *  Create a %deque consisting of copies of the elements from [first,last).
    *
    *  If the iterators are forward, bidirectional, or random-access, then
    *  this will call the elements' copy constructor N times (where N is
index 75931cb09343ce6c683cbc5fb93cb62a86b228bd..cb12e01075a82fd59dcbe8dbfee285af47c76b32 100644 (file)
@@ -495,7 +495,7 @@ public:
    *  @param  first  An input iterator.
    *  @param  last  An input iterator.
    * 
-   *  Creats a %list consisting of copies of the elements from [first,last).
+   *  Create a %list consisting of copies of the elements from [first,last).
    *  This is linear in N (where N is distance(first,last)).
    *
    *  @if maint
index f85b60438c4f5a5b8acd0ef545bbdcec0a8a62d2..26546d3fc959dc9d51df38733bbfd674811c3e41 100644 (file)
@@ -170,7 +170,7 @@ public:
    *  @param  first  An input iterator.
    *  @param  last  An input iterator.
    *
-   *  Creats a %map consisting of copies of the elements from [first,last).
+   *  Create a %map consisting of copies of the elements from [first,last).
    *  This is linear in N if the range is already sorted, and NlogN
    *  otherwise (where N is distance(first,last)).
   */
@@ -186,7 +186,7 @@ public:
    *  @param  comp  A comparison functor.
    *  @param  a  An allocator object.
    *
-   *  Creats a %map consisting of copies of the elements from [first,last).
+   *  Create a %map consisting of copies of the elements from [first,last).
    *  This is linear in N if the range is already sorted, and NlogN
    *  otherwise (where N is distance(first,last)).
   */
index 3da5d7be88cd8c84a73049b6fa256497f1e7cacc..d85c4fda510e08fe55ad3604a469750d75fc68f1 100644 (file)
@@ -183,7 +183,7 @@ public:
    *  @param  first  An input iterator.
    *  @param  last  An input iterator.
    *
-   *  Creats a %multimap consisting of copies of the elements from
+   *  Create a %multimap consisting of copies of the elements from
    *  [first,last).  This is linear in N if the range is already sorted,
    *  and NlogN otherwise (where N is distance(first,last)).
   */
@@ -199,7 +199,7 @@ public:
    *  @param  comp  A comparison functor.
    *  @param  a  An allocator object.
    *
-   *  Creats a %multimap consisting of copies of the elements from [first,last).
+   *  Create a %multimap consisting of copies of the elements from [first,last).
    *  This is linear in N if the range is already sorted, and NlogN
    *  otherwise (where N is distance(first,last)).
   */
index a948d5f8f87c196dcf7d955419bd97695c2074aa..038aa0de84d743900c3ed244ca5802024dbfb048 100644 (file)
@@ -272,7 +272,7 @@ public:
    *  @param  first  An input iterator.
    *  @param  last  An input iterator.
    * 
-   *  Creats a %vector consisting of copies of the elements from [first,last).
+   *  Create a %vector consisting of copies of the elements from [first,last).
    *
    *  If the iterators are forward, bidirectional, or random-access, then
    *  this will call the elements' copy constructor N times (where N is