diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-22 05:07:56 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-22 05:07:56 +0000 |
commit | adb99821bcf487d0baf4058ad676df85b11cf37e (patch) | |
tree | 550e7f7236e422128ce46d7a1977e828b321bd05 /lldb/examples/python | |
parent | f11e7489e1ed5828b32d941e95d9221d50682483 (diff) | |
download | bcm5719-llvm-adb99821bcf487d0baf4058ad676df85b11cf37e.tar.gz bcm5719-llvm-adb99821bcf487d0baf4058ad676df85b11cf37e.zip |
Fix typos.
Summary: Another round of minor typo fixes.
Reviewers: clayborg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D13026
llvm-svn: 248243
Diffstat (limited to 'lldb/examples/python')
-rwxr-xr-x | lldb/examples/python/symbolication.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/symbolication.py b/lldb/examples/python/symbolication.py index d5215ad922d..2f2a274dbc4 100755 --- a/lldb/examples/python/symbolication.py +++ b/lldb/examples/python/symbolication.py @@ -223,7 +223,7 @@ class Image: @classmethod def InitWithSBTargetAndSBModule(cls, target, module): - '''Initalize this Image object with a module from a target.''' + '''Initialize this Image object with a module from a target.''' obj = cls(module.file.fullpath, module.uuid) obj.resolved_path = module.platform_file.fullpath obj.resolved = True |