[Lldb-commits] [lldb] fa00176 - Fix typos
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 21 15:32:43 PST 2020
Author: Adrian Prantl
Date: 2020-01-21T15:32:34-08:00
New Revision: fa001767f0856118e8e7c8f12c31ef7c3afe2b4e
URL: https://github.com/llvm/llvm-project/commit/fa001767f0856118e8e7c8f12c31ef7c3afe2b4e
DIFF: https://github.com/llvm/llvm-project/commit/fa001767f0856118e8e7c8f12c31ef7c3afe2b4e.diff
LOG: Fix typos
Added:
Modified:
lldb/docs/use/symbols.rst
lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
lldb/packages/Python/lldbsuite/test/make/Makefile.rules
lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
Removed:
################################################################################
diff --git a/lldb/docs/use/symbols.rst b/lldb/docs/use/symbols.rst
index fe79782959a3..757d165b9e23 100644
--- a/lldb/docs/use/symbols.rst
+++ b/lldb/docs/use/symbols.rst
@@ -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:
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile b/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
index c39743d999da..f42ac2e81cc7 100644
--- a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
@@ -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
diff --git a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
index ecb75413a0c0..4ae54561a28f 100644
--- a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+++ b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
@@ -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
#----------------------------------------------------------------------
diff --git a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
index 7bef47e8eaee..f7f0b404eae8 100644
--- a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
+++ b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
@@ -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())
More information about the lldb-commits
mailing list