summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2016-12-15 20:00:52 +0100
committerLucas Hoffmann <l-m-h@web.de>2016-12-15 20:04:21 +0100
commitb5c866d15ef05061b965c3935cd16e6786ea0dc6 (patch)
tree9cf9f2f67e3b98da2610f8bed65f80978235c352 /alot
parent7363c639b982b2dd35b12d28e33a91b9d8ae4f14 (diff)
Fix typo in comment
Diffstat (limited to 'alot')
-rw-r--r--alot/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/ui.py b/alot/ui.py
index d9e0d466..d7a62bd6 100644
--- a/alot/ui.py
+++ b/alot/ui.py
@@ -740,7 +740,7 @@ class UI(object):
directory = os.path.dirname(path)
if not os.path.exists(directory):
os.makedirs(directory)
- # Write linewise to avoid building a last string in menory.
+ # Write linewise to avoid building a large string in menory.
with open(path, 'w') as histfile:
for line in history:
histfile.write(line)