org-element: Fix docstring

* lisp/org-element.el (org-element-copy): Fix docstring.
This commit is contained in:
Nicolas Goaziou 2015-02-09 10:57:39 +01:00
parent 16841306ed
commit 7f66983184
1 changed files with 2 additions and 6 deletions

View File

@ -564,12 +564,8 @@ The function takes care of setting `:parent' property for NEW."
(defun org-element-copy (datum)
"Return a copy of DATUM.
DATUM is an element, object or string. `:parent' property is
cleared and contents are removed in the process. If you need to
preserve contents, use `org-element-extract-element' instead.
If DATUM is nil, return nil."
DATUM is an element, object, string or nil. `:parent' property
is cleared and contents are removed in the process."
(when datum
(let ((type (org-element-type datum)))
(case type