aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2025-02-18 07:36:44 +0100
committerTom de Vries <tdevries@suse.de>2025-02-18 07:36:44 +0100
commit24a2f1a6b0ceca9ab50c0d5cd16daba5a7ee1a3a (patch)
tree3ac323c990537505466809369c01e9fad4d865ca /gdb/python
parent1256b9860f37326c2b4fc2d2ec94be943e86429c (diff)
downloadbinutils-24a2f1a6b0ceca9ab50c0d5cd16daba5a7ee1a3a.zip
binutils-24a2f1a6b0ceca9ab50c0d5cd16daba5a7ee1a3a.tar.gz
binutils-24a2f1a6b0ceca9ab50c0d5cd16daba5a7ee1a3a.tar.bz2
[gdb] Fix some typos
Fix typos: ... overriden -> overridden reate -> create ... Tested on x86_64-linux. I
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/lib/gdb/FrameDecorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/lib/gdb/FrameDecorator.py b/gdb/python/lib/gdb/FrameDecorator.py
index 5cdfbe1..43efe8a 100644
--- a/gdb/python/lib/gdb/FrameDecorator.py
+++ b/gdb/python/lib/gdb/FrameDecorator.py
@@ -174,7 +174,7 @@ class FrameDecorator(_FrameDecoratorBase):
sub-classed from FrameDecorator. If Decorator1 just overrides the
'function' method, then all of the other methods are carried out
by the super-class FrameDecorator. But Decorator2 may have
- overriden other methods, so FrameDecorator will look at the
+ overridden other methods, so FrameDecorator will look at the
'base' parameter and defer to that class's methods. And so on,
down the chain."""