Skip to content

Commit 38b6248

Browse files
author
Jason Duncan
committed
Fixed a typo.
1 parent b2b645b commit 38b6248

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TODO.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
** TODO Some docstrings are quite long which lets you pass package-lint and makes for good enough M-x apropos output, but they wrap poorly in M-x help.
2-
** TODO "delimiater" -> "delimiter"
2+
** DONE "delimiater" -> "delimiter"
33
** TODO Since you're using Emacs 25 you can use the string-trim functions (could format-table-trim-row be rewritten as just (string-trim row begin-row end-row)?
44
** TODO Could the first conditional in format-table-remove-noise be written either as:
55

format-table.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ otherwise values will be padded to the right with spaces."
251251
(format-table-assemble-table header body)))
252252

253253
(defun format-table-cleanup-and-parse (str input-mode)
254-
"Parse the given string STR using delimiater information in INPUT-MODE to a table of values as a plist."
254+
"Parse the given string STR using delimiter information in INPUT-MODE to a table of values as a plist."
255255
(if (equal input-mode 'json)
256256
(format-table-parse-json str)
257257
(let* ((lines (split-string str "[

0 commit comments

Comments
 (0)