Skip to content

Commit fa00176

Browse files
committed
Fix typos
1 parent e1d6d36 commit fa00176

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lldb/docs/use/symbols.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ contains the DWARF. Whenever DebugSymbols.framework is asked to lookup a dSYM
267267
file, it will first look in any file mapped UUID directories for a quick match
268268
if the defaults are appropriately set.
269269

270-
For example, if we take the sample UUID plist inforamtion from above, we can
270+
For example, if we take the sample UUID plist information from above, we can
271271
create a File Mapped UUID directory cache in
272272
**~/Library/SymbolCache/dsyms/uuids**. We can easily see how things are laid
273273
out:

lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ all: limit nolimit
55

66
include Makefile.rules
77

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

1111
# The default testsuite setup forces -fno-limit-debug-info. Let's not rely on

lldb/packages/Python/lldbsuite/test/make/Makefile.rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ LLDB_BASE_DIR := $(THIS_FILE_DIR)/../../../../../
4343

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

5151
#----------------------------------------------------------------------

lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ void SymbolFilePDB::CacheFunctionNames() {
12251225

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

0 commit comments

Comments
 (0)