aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Pieter Praet <pieter@praet.org>2011-06-20 22:14:21 +0200
committerGravatar Carl Worth <cworth@cworth.org>2011-06-23 15:59:03 -0700
commit607a73010a5ace8c200f72324558b4901d61fceb (patch)
treed61761478a3c38910e5ac032b0a0939585aba4e2
parent432e091924c1d1d8950a44ca78bc5b9c5ade47e4 (diff)
fix sum moar typos [error messages]
Various typo fixes in error messages within the source code. Signed-off-by: Pieter Praet <pieter@praet.org> Edited-by: Carl Worth <cworth@cworth.org> Restricted to just error messages.
-rw-r--r--emacs/notmuch-maildir-fcc.el2
-rw-r--r--vim/plugin/notmuch.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/emacs/notmuch-maildir-fcc.el b/emacs/notmuch-maildir-fcc.el
index b6c6e2a7..e6788685 100644
--- a/emacs/notmuch-maildir-fcc.el
+++ b/emacs/notmuch-maildir-fcc.el
@@ -163,7 +163,7 @@ will NOT be removed or replaced."
(make-directory (concat path "/new/") t)
(make-directory (concat path "/tmp/") t))
((file-regular-p path)
- (error "%s is a file. Can't creat maildir." path))
+ (error "%s is a file. Can't create maildir." path))
(t
(error "I don't know how to create a maildir here"))))
diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim
index e5787f07..768a011c 100644
--- a/vim/plugin/notmuch.vim
+++ b/vim/plugin/notmuch.vim
@@ -1314,7 +1314,7 @@ endfunction
function! s:NM_tag(filter, tags)
let filter = len(a:filter) ? a:filter : [<SID>NM_search_thread_id()]
if !len(filter)
- throw 'Eeek! I couldn''t find the thead id!'
+ throw 'Eeek! I couldn''t find the thread id!'
endif
let args = ['tag']
call extend(args, a:tags)