[lldb] NFC: Fix trivial typo in comments, documents, and messages

Differential Revision: https://reviews.llvm.org/D77460
This commit is contained in:
Kazuaki Ishizaki
2020-04-07 01:06:02 +09:00
parent ad08ecbd16
commit e9264b746b
91 changed files with 133 additions and 133 deletions

View File

@@ -3,7 +3,7 @@
// This simple program is to test the lldb Python APIs SBTarget, SBFrame,
// SBFunction, SBSymbol, and SBAddress.
//
// When stopped on breakppint 1, we can get the line entry using SBFrame API
// When stopped on breakpoint 1, we can get the line entry using SBFrame API
// 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.