* gdb.texinfo (Commands In Python): Add missing "@"s.
authorTom Tromey <tromey@redhat.com>
Wed, 19 Oct 2011 17:51:01 +0000 (17:51 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Oct 2011 17:51:01 +0000 (17:51 +0000)
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo

index e97cd8b13c678f4bd2b493d1731bbaeb9560ce1f..83fa22fd696a3b3ac10b86b34d3eaf75ecb8cdc4 100644 (file)
@@ -1,3 +1,7 @@
+2011-10-19  Tom Tromey  <tromey@redhat.com>
+
+       * gdb.texinfo (Commands In Python): Add missing "@"s.
+
 2011-10-13  Kevin Pouget  <kevin.pouget@st.com>
 
        PR python/13285 Document named constants for frame unwind stop reasons
index 0aa90eb49584fa7ef699f130c170617aadbcbab0..c69bddbbca60ab56ef98fd9fd2f6855284948cbb 100644 (file)
@@ -22752,7 +22752,7 @@ You can implement new @value{GDBN} CLI commands in Python.  A CLI
 command is implemented using an instance of the @code{gdb.Command}
 class, most commonly using a subclass.
 
-@defun Command.__init__ (name, @var{command_class} @r{[}, var{completer_class} @r{[}, var{prefix}@r{]]})
+@defun Command.__init__ (name, @var{command_class} @r{[}, @var{completer_class} @r{[}, @var{prefix}@r{]]})
 The object initializer for @code{Command} registers the new command
 with @value{GDBN}.  This initializer is normally invoked from the
 subclass' own @code{__init__} method.