diff options
Diffstat (limited to 'lldb/examples/python/mach_o.py')
| -rwxr-xr-x | lldb/examples/python/mach_o.py | 10 |
1 files changed, 5 insertions, 5 deletions
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"; |

