diff options
author | Tom de Vries <tdevries@suse.de> | 2025-02-18 07:36:44 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-02-18 07:36:44 +0100 |
commit | 24a2f1a6b0ceca9ab50c0d5cd16daba5a7ee1a3a (patch) | |
tree | 3ac323c990537505466809369c01e9fad4d865ca /gdb/python | |
parent | 1256b9860f37326c2b4fc2d2ec94be943e86429c (diff) | |
download | binutils-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.py | 2 |
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.""" |