diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2017-06-20 21:30:11 -0400 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2017-06-20 21:31:59 -0400 |
commit | eb83230b4d5c0129174937846ded9eaa9f78ff28 (patch) | |
tree | 262c146486a03e8b63a3e3a6ce1fc9aa9e1d066d /gdb/doc/python.texi | |
parent | eceb74ca646e78adab1fa9f5c3b7cce51e894bc3 (diff) | |
download | gdb-eb83230b4d5c0129174937846ded9eaa9f78ff28.zip gdb-eb83230b4d5c0129174937846ded9eaa9f78ff28.tar.gz gdb-eb83230b4d5c0129174937846ded9eaa9f78ff28.tar.bz2 |
Fix PR gdb/21606: SYMBOL_FUNCTIONS_DOMAIN misspelled in documentation
Both Python and Guile documentations misspelled
SYMBOL_FUNCTIONS_DOMAIN, writing SYMBOL_FUNCTION_DOMAIN instead. This
obvious commit fixes it.
gdb/doc/ChangeLog:
2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
PR gdb/21606
* python.texi (Python representation of Symbols.): Replace
SYMBOL_FUNCTION_DOMAIN by SYMBOL_FUNCTIONS_DOMAIN, fixing typo.
* guile.texi (Guile representation of Symbols.): Likewise.
Diffstat (limited to 'gdb/doc/python.texi')
-rw-r--r-- | gdb/doc/python.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index ee4f7a2..32d7939 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -4559,7 +4559,7 @@ This domain holds a subset of the @code{SYMBOLS_VAR_DOMAIN}; it contains everything minus functions and types. @vindex SYMBOL_FUNCTIONS_DOMAIN -@item gdb.SYMBOL_FUNCTION_DOMAIN +@item gdb.SYMBOL_FUNCTIONS_DOMAIN This domain contains all functions. @vindex SYMBOL_TYPES_DOMAIN |