Fix reference to wrong class in comment
authorJonathan Wakely <jwakely@redhat.com>
Sat, 4 May 2019 15:52:52 +0000 (16:52 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Sat, 4 May 2019 15:52:52 +0000 (16:52 +0100)
        * include/std/system_error (error_category): Fix comment.

From-SVN: r270877

libstdc++-v3/ChangeLog
libstdc++-v3/include/std/system_error

index e517c15f6392d6abfb3941691361587ee4af9897..694739f43ebbcc008336d2609831ce7ef63fe3cf 100644 (file)
@@ -1,5 +1,7 @@
 2019-05-04  Jonathan Wakely  <jwakely@redhat.com>
 
+       * include/std/system_error (error_category): Fix comment.
+
        PR libstdc++/90299
        * src/c++17/fs_ops.cc (absolute(const path&)): Report an error if the
        argument is an empty path.
index 768eddaefd15db43c9ae194807a1d0920ece941b..3685348ee4d24f11311aa9072de963123a82ab97 100644 (file)
@@ -77,7 +77,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   /** Abstract base class for types defining a category of error codes.
    *
    * An error category defines a context that give meaning to the integer
-   * stored in an `error_code` or `error_category` object. For example,
+   * stored in an `error_code` or `error_condition` object. For example,
    * the standard `errno` constants such a `EINVAL` and `ENOMEM` are
    * associated with the "generic" category and other OS-specific error
    * numbers are associated with the "system" category, but a user-defined