summaryrefslogtreecommitdiff
path: root/lisp/org/org-protocol.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2010-01-14 19:59:31 +0100
committerJuanma Barranquero <lekktu@gmail.com>2010-01-14 19:59:31 +0100
commitd1f18ec0920105223d2aecfd838f8b19921e6340 (patch)
treef98090d895340248c119119406b69974d19cf499 /lisp/org/org-protocol.el
parent80cd4bb402cd55d9a7efcdf7a77e83cf1118eb61 (diff)
downloademacs-d1f18ec0920105223d2aecfd838f8b19921e6340.tar.gz
Fix typos in docstrings.
Diffstat (limited to 'lisp/org/org-protocol.el')
-rw-r--r--lisp/org/org-protocol.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el
index f0c0e302282..59f08f1dfa2 100644
--- a/lisp/org/org-protocol.el
+++ b/lisp/org/org-protocol.el
@@ -355,9 +355,9 @@ encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ΓΌ'."
ret ))
(defun org-protocol-flatten-greedy (param-list &optional strip-path replacement)
- "Greedy handlers might recieve a list like this from emacsclient:
+ "Greedy handlers might receive a list like this from emacsclient:
'( (\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\")
-where \"/dir/\" is the absolute path to emacsclients working directory. This
+where \"/dir/\" is the absolute path to emacsclients working directory. This
function transforms it into a flat list utilizing `org-protocol-flatten' and
transforms the elements of that list as follows:
@@ -400,10 +400,10 @@ returned list."
(defun org-protocol-flatten (l)
- "Greedy handlers might recieve a list like this from emacsclient:
+ "Greedy handlers might receive a list like this from emacsclient:
'( (\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\")
-where \"/dir/\" is the absolute path to emacsclients working directory. This
-function transforms it into a flat list."
+where \"/dir/\" is the absolute path to emacsclients working directory.
+This function transforms it into a flat list."
(if (null l) ()
(if (listp l)
(append (org-protocol-flatten (car l)) (org-protocol-flatten (cdr l)))