Fix comment typo
authorSimon Marchi <simon.marchi@ericsson.com>
Tue, 2 Dec 2014 22:19:11 +0000 (17:19 -0500)
committerSimon Marchi <simon.marchi@ericsson.com>
Tue, 2 Dec 2014 22:22:07 +0000 (17:22 -0500)
ChangeLog:

* common/cleanups.c (make_cleanup_dtor): Fix comment typo.

gdb/ChangeLog
gdb/common/cleanups.c

index acb0786..f32b6b9 100644 (file)
@@ -1,3 +1,7 @@
+2014-12-02  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * common/cleanups.c (make_cleanup_dtor): Fix comment typo.
+
 2014-12-02  Nick Bull  <nicholaspbull@gmail.com>
 
        * NEWS: Mention new Python events.
index 49b643b..80271fd 100644 (file)
@@ -119,7 +119,7 @@ make_cleanup (make_cleanup_ftype *function, void *arg)
   return make_my_cleanup (&cleanup_chain, function, arg);
 }
 
-/* Same as make_cleanup except also includes TDOR, a destructor to free ARG.
+/* Same as make_cleanup except also includes DTOR, a destructor to free ARG.
    DTOR is invoked when the cleanup is performed or when it is discarded.  */
 
 struct cleanup *