Fix a variety of typos.

No functional change.

llvm-svn: 239995
This commit is contained in:
Bruce Mitchener
2015-06-18 05:27:05 +00:00
parent 8b2492f2a0
commit 58ef391f3e
51 changed files with 112 additions and 112 deletions

View File

@@ -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.