2019-07-26 François Dumont <fdumont@gcc.gnu.org>
authorFrançois Dumont <fdumont@gcc.gnu.org>
Fri, 26 Jul 2019 05:05:48 +0000 (05:05 +0000)
committerFrançois Dumont <fdumont@gcc.gnu.org>
Fri, 26 Jul 2019 05:05:48 +0000 (05:05 +0000)
* testsuite/util/testsuite_iterators.h
(bidirectional_iterator_wrapper): Fix type comment.
(random_access_iterator_wrapper): Likewise.

From-SVN: r273824

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/util/testsuite_iterators.h

index 21f352a..c9c338f 100644 (file)
@@ -1,3 +1,9 @@
+2019-07-26  François Dumont  <fdumont@gcc.gnu.org>
+
+       * testsuite/util/testsuite_iterators.h
+       (bidirectional_iterator_wrapper): Fix type comment.
+       (random_access_iterator_wrapper): Likewise.
+
 2019-07-25  Jonathan Wakely  <jwakely@redhat.com>
 
        * include/std/bit (endian): Move definition here as per P1612R1.
index ac646a5..42e4274 100644 (file)
@@ -344,7 +344,7 @@ namespace __gnu_test
    * @brief bidirectional_iterator wrapper for pointer
    *
    * This class takes a pointer and wraps it to provide exactly
-   * the requirements of a forward_iterator. It should not be
+   * the requirements of a bidirectional_iterator. It should not be
    * instantiated directly, but generated from a test_container
    */
   template<class T>
@@ -408,7 +408,7 @@ namespace __gnu_test
    * @brief random_access_iterator wrapper for pointer
    *
    * This class takes a pointer and wraps it to provide exactly
-   * the requirements of a forward_iterator. It should not be
+   * the requirements of a random_access_iterator. It should not be
    * instantiated directly, but generated from a test_container
    */
   template<class T>