Skip to content

Commit 1d6c317

Browse files
author
Jason Duncan
committed
Touched up a doc string.
1 parent 9958b7c commit 1d6c317

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

format-table.el

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,11 @@
165165
(-zip-with 'max (-map 'length cur-row) last)))))
166166

167167
(defun format-table-render-row (row max-col-widths output-mode &optional pad-fn)
168-
"Given the list of values ROW, the list of MAX-COL-WIDTHS, and delimiter information in OUTPUT-MODE, render a table row with the proper column separators and a newline at the end.
168+
"Render a table row with the proper column separators and a newline.
169169
170-
Optionally use PAD-FN to pad each column value, otherwise values will be padded to the right with spaces."
170+
Arguments are the list of values ROW, the list of MAX-COL-WIDTHS, and delimiter
171+
information in OUTPUT-MODE. Optionally use PAD-FN to pad each column value,
172+
otherwise values will be padded to the right with spaces."
171173
(let ((pad-fn (or pad-fn 'format-table-pad-right)))
172174
(concat
173175
(plist-get output-mode :begin-row)

0 commit comments

Comments
 (0)