summaryrefslogtreecommitdiff
path: root/pexpect
diff options
context:
space:
mode:
authorThomas Kluyver <thomas@kluyver.me.uk>2020-05-16 19:24:44 +0100
committerGitHub <noreply@github.com>2020-05-16 19:24:44 +0100
commit02c38338b4ade8b0b0e85be613bc2b9dbfe68a7b (patch)
treefa784fb7ea4c22663b10be0c824e8ff45be38ad7 /pexpect
parent5da50dccbbdb10094837fe56399c5e885867c184 (diff)
parent787e78310dcde34be28fc2c1f5f2b6e69c66a45f (diff)
downloadpexpect-git-master.tar.gz
Merge pull request #643 from scop/spellingHEADmaster
Spelling fixes
Diffstat (limited to 'pexpect')
-rw-r--r--pexpect/__init__.py2
-rw-r--r--pexpect/spawnbase.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 7e30453..b3a64b6 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -1,6 +1,6 @@
'''Pexpect is a Python module for spawning child applications and controlling
them automatically. Pexpect can be used for automating interactive applications
-such as ssh, ftp, passwd, telnet, etc. It can be used to a automate setup
+such as ssh, ftp, passwd, telnet, etc. It can be used to automate setup
scripts for duplicating software package installations on different servers. It
can be used for automated software testing. Pexpect is in the spirit of Don
Libes' Expect, but Pexpect is pure Python. Other Expect-like modules for Python
diff --git a/pexpect/spawnbase.py b/pexpect/spawnbase.py
index 59e9057..aacb63a 100644
--- a/pexpect/spawnbase.py
+++ b/pexpect/spawnbase.py
@@ -153,7 +153,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)