diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-06-18 05:27:05 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-06-18 05:27:05 +0000 |
| commit | 58ef391f3ef80cc4e4e375b7e2f1f397afd47b90 (patch) | |
| tree | 5745c92f275d16ef1c8c47b79e523929b3169a36 /lldb/www/python-reference.html | |
| parent | 8b2492f2a0e0b143c4c4f17765901e568af92e68 (diff) | |
| download | bcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.tar.gz bcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.zip | |
Fix a variety of typos.
No functional change.
llvm-svn: 239995
Diffstat (limited to 'lldb/www/python-reference.html')
| -rwxr-xr-x | lldb/www/python-reference.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/www/python-reference.html b/lldb/www/python-reference.html index bb4506229f5..4869c4fbfc4 100755 --- a/lldb/www/python-reference.html +++ b/lldb/www/python-reference.html @@ -418,7 +418,7 @@ Enter your Python command(s). Type 'DONE' to end. <code> <font color=blue>class</font> CommandObjectType:<br/> <font color=blue>def</font> __init__(self, debugger, session_dict):<br/> - <i>this call should initialize the command with respect to the command interpeter for the passed-in debugger</i> <br/> + <i>this call should initialize the command with respect to the command interpreter for the passed-in debugger</i> <br/> <font color=blue>def</font> __call__(self, debugger, command, exe_ctx, result): <br/> <i>this is the actual bulk of the command, akin to Python command functions</i> <br/> <font color=blue>def</font> get_short_help(self): <br/> @@ -444,7 +444,7 @@ Enter your Python command(s). Type 'DONE' to end. <p>where <b>debugger</b> and <b>internal_dict</b> are as above, that function will get run when the module is loaded allowing you to add whatever commands you want into the current debugger. Note that - this function will only be run when using the LLDB comand <b>command script import</b>, + this function will only be run when using the LLDB command <b>command script import</b>, it will not get run if anyone imports your module from another module. If you want to always run code when your module is loaded from LLDB <u>or</u> when loaded via an <b>import</b> statement in python code |

