Commit fa001767 authored by Adrian Prantl's avatar Adrian Prantl
Browse files

Fix typos

parent e1d6d368
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -267,7 +267,7 @@ contains the DWARF. Whenever DebugSymbols.framework is asked to lookup a dSYM
file, it will first look in any file mapped UUID directories for a quick match
if the defaults are appropriately set.

For example, if we take the sample UUID plist inforamtion from above, we can
For example, if we take the sample UUID plist information from above, we can
create a File Mapped UUID directory cache in
**~/Library/SymbolCache/dsyms/uuids**. We can easily see how things are laid
out:
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ all: limit nolimit

include Makefile.rules

# Force a.cpp to be built with no debug inforamtion
# Force a.cpp to be built with no debug information
a.o: CFLAGS = $(CFLAGS_NO_DEBUG)

# The default testsuite setup forces -fno-limit-debug-info. Let's not rely on
+2 −2
Original line number Diff line number Diff line
@@ -43,9 +43,9 @@ LLDB_BASE_DIR := $(THIS_FILE_DIR)/../../../../../

# The test harness invokes the test Makefiles with an explicit 'all'
# target, but its handy to be able to recursively call this Makefile
# without speficying a goal. You almost certainly want to build 'all',
# without specifying a goal. You almost certainly want to build 'all',
# and not only the first target defined in this file (which might vary
# according to varaible values).
# according to variable values).
.DEFAULT_GOAL := all

#----------------------------------------------------------------------
+1 −1
Original line number Diff line number Diff line
@@ -1225,7 +1225,7 @@ void SymbolFilePDB::CacheFunctionNames() {

        // To search a method name, like NS::Class:MemberFunc, LLDB searches
        // its base name, i.e. MemberFunc by default. Since PDBSymbolFunc does
        // not have inforamtion of this, we extract base names and cache them
        // not have information of this, we extract base names and cache them
        // by our own effort.
        llvm::StringRef basename = MSVCUndecoratedNameParser::DropScope(name);
        if (!basename.empty())