diff options
author | Tom de Vries <tdevries@suse.de> | 2025-03-06 23:21:54 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-03-06 23:21:54 +0100 |
commit | 586ccf782280eb8494dddd137c969291e4e958e1 (patch) | |
tree | 2650b23cdf4f43aad680bca0bbed44cdd0012455 /gdb/python/py-progspace.c | |
parent | ccf9089658b756d928eb37a7ee84249f29f49221 (diff) | |
download | gdb-586ccf782280eb8494dddd137c969291e4e958e1.zip gdb-586ccf782280eb8494dddd137c969291e4e958e1.tar.gz gdb-586ccf782280eb8494dddd137c969291e4e958e1.tar.bz2 |
[gdb/python] Fix typos
Fix typos:
...
gdb/python/py-framefilter.c:749: indention ==> indentation
gdb/python/py-framefilter.c:837: indention ==> indentation
gdb/python/py-lazy-string.c:35: sting ==> string
gdb/python/py-progspace.c:119: Retun ==> Return
gdb/python/py-progspace.c:139: Retun ==> Return
...
Diffstat (limited to 'gdb/python/py-progspace.c')
-rw-r--r-- | gdb/python/py-progspace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-progspace.c b/gdb/python/py-progspace.c index bb44aa4..4dbe18e 100644 --- a/gdb/python/py-progspace.c +++ b/gdb/python/py-progspace.c @@ -116,7 +116,7 @@ pspy_get_filename (PyObject *self, void *closure) Py_RETURN_NONE; } -/* Implement the gdb.Progspace.symbol_file attribute. Retun the +/* Implement the gdb.Progspace.symbol_file attribute. Return the gdb.Objfile corresponding to the currently loaded symbol-file, or None if no symbol-file is loaded. If the Progspace is invalid then raise an exception. */ @@ -136,7 +136,7 @@ pspy_get_symbol_file (PyObject *self, void *closure) Py_RETURN_NONE; } -/* Implement the gdb.Progspace.executable_filename attribute. Retun a +/* Implement the gdb.Progspace.executable_filename attribute. Return a string containing the name of the current executable, or None if no executable is currently set. If the Progspace is invalid then raise an exception. */ |