Browse Source

org-element: Fix docstring

* lisp/org-element.el (org-element-set-contents): Fix docstring.
Nicolas Goaziou 10 years ago
parent
commit
80bbf2440a
1 changed files with 1 additions and 2 deletions
  1. 1 2
      lisp/org-element.el

+ 1 - 2
lisp/org-element.el

@@ -466,8 +466,7 @@ Return modified element."
     element))
 
 (defsubst org-element-set-contents (element &rest contents)
-  "Set ELEMENT contents to CONTENTS.
-Return modified element."
+  "Set ELEMENT contents to CONTENTS."
   (cond ((not element) (list contents))
 	((not (symbolp (car element))) contents)
 	((cdr element) (setcdr (cdr element) contents))