소스 검색

org-element: Fix a docstring

* lisp/org-element.el (org-element--remove-indentation): Fix
  docstring.
Nicolas Goaziou 12 년 전
부모
커밋
10169054eb
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      lisp/org-element.el

+ 4 - 4
lisp/org-element.el

@@ -1650,10 +1650,10 @@ CONTENTS is nil."
 
 (defun org-element--remove-indentation (s &optional n)
   "Remove maximum common indentation in string S and return it.
-When N is a positive integer, remove exactly that indentation,
-possible, or return S as-is otherwise.  Unlike to
-`org-remove-indentation', this function doesn't call `untabify'
-on S first."
+When optional argument N is a positive integer, remove exactly
+that much characters from indentation, if possible, or return
+S as-is otherwise.  Unlike to `org-remove-indentation', this
+function doesn't call `untabify' on S."
   (catch 'exit
     (with-temp-buffer
       (insert s)