aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
diff options
context:
space:
mode:
authorKazuaki Ishizaki <ishizaki@jp.ibm.com>2020-04-07 01:06:02 +0900
committerKazuaki Ishizaki <ishizaki@jp.ibm.com>2020-04-07 01:06:16 +0900
commite9264b746b81a63323d884ea07b2ebfbb660d004 (patch)
tree6f3500aebd252120ccdd60c484dce0ac76eb45fb /lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
parentad08ecbd16854ec85809280f3db491aee0317423 (diff)
downloadllvm-e9264b746b81a63323d884ea07b2ebfbb660d004.zip
llvm-e9264b746b81a63323d884ea07b2ebfbb660d004.tar.gz
llvm-e9264b746b81a63323d884ea07b2ebfbb660d004.tar.bz2
[lldb] NFC: Fix trivial typo in comments, documents, and messages
Differential Revision: https://reviews.llvm.org/D77460
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h')
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
index 2bab326..1689680 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
+++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
@@ -36,7 +36,7 @@
// can never fail to assert instead, such as the creation of
// PythonString from a string literal.
//
-// * Elimintate Reset(), and make all non-default constructors private.
+// * Eliminate Reset(), and make all non-default constructors private.
// Python objects should be created with Retain<> or Take<>, and they
// should be assigned with operator=
//