[all-commits] [llvm/llvm-project] 724043: [lldb] Fixed a number of typos
Gabriel Ravier via All-commits
all-commits at lists.llvm.org
Tue Sep 13 10:38:59 PDT 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 7240436c94bd02762a723a2e3551528d16c8efdb
https://github.com/llvm/llvm-project/commit/7240436c94bd02762a723a2e3551528d16c8efdb
Author: Gabriel Ravier <gabravier at gmail.com>
Date: 2022-09-13 (Tue, 13 Sep 2022)
Changed paths:
M lldb/bindings/interface/SBProcess.i
M lldb/bindings/interface/SBType.i
M lldb/docs/use/python-reference.rst
M lldb/examples/python/armv7_cortex_m_target_defintion.py
M lldb/examples/python/lldb_module_utils.py
M lldb/include/lldb/Core/Debugger.h
M lldb/include/lldb/Core/Mangled.h
M lldb/include/lldb/Symbol/Type.h
M lldb/packages/Python/lldbsuite/test/lldbbench.py
M lldb/source/Core/DynamicLoader.cpp
M lldb/source/Core/IOHandlerCursesGUI.cpp
M lldb/source/Expression/DWARFExpression.cpp
M lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
M lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
M lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
M lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
M lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
M lldb/source/Plugins/Process/scripted/ScriptedThread.cpp
M lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
M lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
M lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
M lldb/source/Symbol/Type.cpp
M lldb/test/API/commands/expression/codegen-crash-import-def-arraytype-element/main.cpp
M lldb/test/API/functionalities/breakpoint/debugbreak/TestDebugBreak.py
M lldb/test/API/functionalities/load_unload/TestLoadUnload.py
M lldb/test/API/functionalities/memory/tag/TestMemoryTag.py
M lldb/test/API/functionalities/module_cache/bsd/TestModuleCacheBSD.py
M lldb/test/API/functionalities/module_cache/simple_exe/TestModuleCacheSimple.py
M lldb/test/API/functionalities/module_cache/universal/TestModuleCacheUniversal.py
M lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
M lldb/test/API/functionalities/postmortem/minidump-new/makefile.txt
M lldb/tools/debugserver/source/DNBTimer.h
M lldb/tools/debugserver/source/JSON.h
M lldb/tools/debugserver/source/MacOSX/Genealogy.cpp
Log Message:
-----------
[lldb] Fixed a number of typos
I went over the output of the following mess of a command:
(ulimit -m 2000000; ulimit -v 2000000; git ls-files -z | parallel
--xargs -0 cat | aspell list --mode=none --ignore-case | grep -E
'^[A-Za-z][a-z]*$' | sort | uniq -c | sort -n | grep -vE '.{25}' |
aspell pipe -W3 | grep : | cut -d' ' -f2 | less)
and proceeded to spend a few days looking at it to find probable typos
and fixed a few hundred of them in all of the llvm project (note, the
ones I found are not anywhere near all of them, but it seems like a
good start).
Differential revision: https://reviews.llvm.org/D131122
More information about the All-commits
mailing list