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/test/python_api/function_symbol | |
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/test/python_api/function_symbol')
-rw-r--r-- | lldb/test/python_api/function_symbol/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/python_api/function_symbol/main.c b/lldb/test/python_api/function_symbol/main.c index 1eb90d5fc23..b60b2faf18d 100644 --- a/lldb/test/python_api/function_symbol/main.c +++ b/lldb/test/python_api/function_symbol/main.c @@ -12,11 +12,11 @@ // SBFunction, SBSymbol, and SBAddress. // // When stopped on breakppint 1, we can get the line entry using SBFrame API -// SBFrame.GetLineEntry(). We'll get the start address for the the line entry +// SBFrame.GetLineEntry(). We'll get the start address for the line entry // with the SBAddress type, resolve the symbol context using the SBTarget API // SBTarget.ResolveSymbolContextForAddress() in order to get the SBSymbol. // -// We then stop at breakpoint 2, get the SBFrame, and the the SBFunction object. +// We then stop at breakpoint 2, get the SBFrame, and the SBFunction object. // // The address from calling GetStartAddress() on the symbol and the function // should point to the same address, and we also verify that. |