summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)