mu4e: fix some typos

Hat-tip: Kelly Dean.
This commit is contained in:
djcb
2017-08-13 10:09:03 +03:00
parent b9ddc8b708
commit ceb7f0a8b4

View File

@ -58,16 +58,16 @@ none."
(defstruct mu4e-context (defstruct mu4e-context
"A mu4e context object with the following members: "A mu4e context object with the following members:
- `name': the name of the context, eg. \"Work\" or \"Private\".' - `name': the name of the context, eg. \"Work\" or \"Private\".
- `enter-func': a parameterless function invoked when entering - `enter-func': a parameterless function invoked when entering
this context, or nil this context, or nil
- `leave-func':a parameterless fuction invoked when leaving this - `leave-func':a parameterless function invoked when leaving this
context, or nil context, or nil
- `match-func': a function called when comnposing a new messages, - `match-func': a function called when composing a new message,
and takes a message plist that takes a message plist for the message replied to or
for the message replied to or forwarded, and nil forwarded, and nil otherwise. Before composing a new message,
otherwise. Before composing a new message, `mu4e' switches to the `mu4e' switches to the first context for which `match-func'
first context for which `match-func' return t." returns t."
name ;; name of the context, e.g. "work" name ;; name of the context, e.g. "work"
(enter-func nil) ;; function invoked when entering the context (enter-func nil) ;; function invoked when entering the context
(leave-func nil) ;; function invoked when leaving the context (leave-func nil) ;; function invoked when leaving the context