summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-08-22 12:16:42 -0700
committerDylan Baker <dylan@pnwbakers.com>2017-08-22 12:58:07 -0700
commit02bfa35038dd7a8eb8e3808ac98a7620fea3081f (patch)
treed08902adab5a3e42e9b96e01efb098f7984849c9 /alot
parent052bd44cd92d79473717806487cbbe4ca3f34bd2 (diff)
commands/globals: spelling and grammar of a comment
It's just a little off
Diffstat (limited to 'alot')
-rw-r--r--alot/commands/globals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index f8f58749..7b9cfa3e 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -247,7 +247,7 @@ class ExternalCommand(Command):
# set standard input for subcommand
stdin = None
if self.stdin is not None:
- # wrap strings in StrinIO so that they behaves like a file
+ # wrap strings in StringIO so that they behave like files
if isinstance(self.stdin, unicode):
stdin = StringIO(self.stdin)
else: