summaryrefslogtreecommitdiff
path: root/lldb/third_party
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/third_party
parentad08ecbd16854ec85809280f3db491aee0317423 (diff)
downloadllvm-e9264b746b81a63323d884ea07b2ebfbb660d004.tar.gz
[lldb] NFC: Fix trivial typo in comments, documents, and messages
Differential Revision: https://reviews.llvm.org/D77460
Diffstat (limited to 'lldb/third_party')
-rw-r--r--lldb/third_party/Python/module/pexpect-4.6/pexpect/spawnbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/third_party/Python/module/pexpect-4.6/pexpect/spawnbase.py b/lldb/third_party/Python/module/pexpect-4.6/pexpect/spawnbase.py
index 63c0b4204eb9..4bebe1158478 100644
--- a/lldb/third_party/Python/module/pexpect-4.6/pexpect/spawnbase.py
+++ b/lldb/third_party/Python/module/pexpect-4.6/pexpect/spawnbase.py
@@ -150,7 +150,7 @@ class SpawnBase(object):
self._buffer = self.buffer_type()
self._buffer.write(value)
- # This property is provided for backwards compatability (self.buffer used
+ # This property is provided for backwards compatibility (self.buffer used
# to be a string/bytes object)
buffer = property(_get_buffer, _set_buffer)