Browse Source

org-table: Fix a comment

* lisp/org-table.el (org-table-end): Fix a comment.
Nicolas Goaziou 9 years ago
parent
commit
a8f278fedf
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lisp/org-table.el

+ 3 - 3
lisp/org-table.el

@@ -927,9 +927,9 @@ a table."
 	   (match-beginning 0))
 	  ;; When the line right after the table is the last line in
 	  ;; the buffer with trailing spaces but no final newline
-	  ;; character, trailing spaces, be sure to catch the correct
-	  ;; ending at its beginning.  In any other case, ending is
-	  ;; expected to be at point max.
+	  ;; character, be sure to catch the correct ending at its
+	  ;; beginning.  In any other case, ending is expected to be
+	  ;; at point max.
 	  (t (goto-char (point-max))
 	     (skip-chars-backward " \t")
 	     (if (bolp) (point) (line-end-position))))))