diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-01-21 18:30:00 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-01-22 09:05:32 +0000 |
commit | cc4bc93e5255a58cffa4824849df0b237d2cd4cb (patch) | |
tree | 724dedbc4aeca778fb3bf1047e08f9226b787977 /gdb/doc | |
parent | c651f0a6147e4de96326f6eecdff5520b9159816 (diff) | |
download | gdb-cc4bc93e5255a58cffa4824849df0b237d2cd4cb.zip gdb-cc4bc93e5255a58cffa4824849df0b237d2cd4cb.tar.gz gdb-cc4bc93e5255a58cffa4824849df0b237d2cd4cb.tar.bz2 |
gdb/doc: down case contents of @var
After a discussion on a recent patch it was pointed out that the
contents of a @var should (generally) be lower case. I took a look
through the GDB manual and there are a small number of places where
the contents are currently upper case, but one in particular seemed
like an obvious candidate for being down cased, so lets do that.
gdb/doc/ChangeLog:
* gdb.texinfo (PowerPC Embedded): Down case contents of @var.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 200239c..50b5d01 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2021-01-22 Andrew Burgess <andrew.burgess@embecosm.com> + + * gdb.texinfo (PowerPC Embedded): Down case contents of @var. + 2021-01-21 Andrew Burgess <andrew.burgess@embecosm.com> * gdb.texinfo (Commands): Update menu. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index c9b432c..b413341 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -24754,8 +24754,8 @@ Show whether OpenRISC-specific debugging messages are enabled. implement in hardware simple hardware watchpoint conditions of the form: @smallexample -(@value{GDBP}) watch @var{ADDRESS|VARIABLE} \ - if @var{ADDRESS|VARIABLE} == @var{CONSTANT EXPRESSION} +(@value{GDBP}) watch @var{address|variable} \ + if @var{address|variable} == @var{constant expression} @end smallexample The DVC register will be automatically used when @value{GDBN} detects |