diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-01 21:22:11 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-01 21:22:11 +0000 |
commit | d93c4a33395a7d9b960ec64348a07ba204d51017 (patch) | |
tree | 8cb726e00581c790adf105b4f2d8d4d8c1ca9efe /lldb/examples/python | |
parent | 8e9765352888379973132b3e6c2f47b3ba82d7ce (diff) | |
download | bcm5719-llvm-d93c4a33395a7d9b960ec64348a07ba204d51017.tar.gz bcm5719-llvm-d93c4a33395a7d9b960ec64348a07ba204d51017.zip |
Fix typos.
llvm-svn: 212132
Diffstat (limited to 'lldb/examples/python')
-rwxr-xr-x | lldb/examples/python/delta.py | 2 | ||||
-rwxr-xr-x | lldb/examples/python/gdbremote.py | 12 | ||||
-rwxr-xr-x | lldb/examples/python/mach_o.py | 10 |
3 files changed, 12 insertions, 12 deletions
diff --git a/lldb/examples/python/delta.py b/lldb/examples/python/delta.py index da17dd7ec49..e470de536d8 100755 --- a/lldb/examples/python/delta.py +++ b/lldb/examples/python/delta.py @@ -68,7 +68,7 @@ def parse_log_file(file, options): generated using: (lldb) log enable --threadsafe --timestamp --file <FILE> .... - This log file will contain timestamps and this fucntion will then normalize + This log file will contain timestamps and this function will then normalize those packets to be relative to the first value timestamp that is found and show delta times between log lines and also keep track of how long it takes for GDB remote commands to make a send/receive round trip. This can be diff --git a/lldb/examples/python/gdbremote.py b/lldb/examples/python/gdbremote.py index fa52ecbb600..512162ab593 100755 --- a/lldb/examples/python/gdbremote.py +++ b/lldb/examples/python/gdbremote.py @@ -45,7 +45,7 @@ class TerminalColors: return '' def bold(self, on = True): - '''Enable or disable bold depending on the "on" paramter.''' + '''Enable or disable bold depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[1m"; @@ -54,7 +54,7 @@ class TerminalColors: return '' def italics(self, on = True): - '''Enable or disable italics depending on the "on" paramter.''' + '''Enable or disable italics depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[3m"; @@ -63,7 +63,7 @@ class TerminalColors: return '' def underline(self, on = True): - '''Enable or disable underline depending on the "on" paramter.''' + '''Enable or disable underline depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[4m"; @@ -72,7 +72,7 @@ class TerminalColors: return '' def inverse(self, on = True): - '''Enable or disable inverse depending on the "on" paramter.''' + '''Enable or disable inverse depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[7m"; @@ -81,7 +81,7 @@ class TerminalColors: return '' def strike(self, on = True): - '''Enable or disable strike through depending on the "on" paramter.''' + '''Enable or disable strike through depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[9m"; @@ -859,7 +859,7 @@ gdb_remote_commands = { def parse_gdb_log_file(file, options): '''Parse a GDB log file that was generated by enabling logging with: (lldb) log enable --threadsafe --timestamp --file <FILE> gdb-remote packets - This log file will contain timestamps and this fucntion will then normalize + This log file will contain timestamps and this function will then normalize those packets to be relative to the first value timestamp that is found and show delta times between log lines and also keep track of how long it takes for GDB remote commands to make a send/receive round trip. This can be diff --git a/lldb/examples/python/mach_o.py b/lldb/examples/python/mach_o.py index 5838c5c8833..a609b09ed0e 100755 --- a/lldb/examples/python/mach_o.py +++ b/lldb/examples/python/mach_o.py @@ -221,7 +221,7 @@ class TerminalColors: return '' def bold(self, on = True): - '''Enable or disable bold depending on the "on" paramter.''' + '''Enable or disable bold depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[1m"; @@ -230,7 +230,7 @@ class TerminalColors: return '' def italics(self, on = True): - '''Enable or disable italics depending on the "on" paramter.''' + '''Enable or disable italics depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[3m"; @@ -239,7 +239,7 @@ class TerminalColors: return '' def underline(self, on = True): - '''Enable or disable underline depending on the "on" paramter.''' + '''Enable or disable underline depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[4m"; @@ -248,7 +248,7 @@ class TerminalColors: return '' def inverse(self, on = True): - '''Enable or disable inverse depending on the "on" paramter.''' + '''Enable or disable inverse depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[7m"; @@ -257,7 +257,7 @@ class TerminalColors: return '' def strike(self, on = True): - '''Enable or disable strike through depending on the "on" paramter.''' + '''Enable or disable strike through depending on the "on" parameter.''' if self.enabled: if on: return "\x1b[9m"; |