diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2019-09-27 06:02:54 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-27 07:02:54 +0200 |
commit | 39290cf88c5047e86dc4894e3190c63d5985f56f (patch) | |
tree | f37c9e0a5491fb9b11266ce08bddc297b57f37fc /compiler/asciitables.nim | |
parent | 9dd297f613768bb170e05dcaf361015d9448c582 (diff) | |
download | Nim-39290cf88c5047e86dc4894e3190c63d5985f56f.tar.gz |
Fix spellings (#12277) [backport]
Diffstat (limited to 'compiler/asciitables.nim')
-rw-r--r-- | compiler/asciitables.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/asciitables.nim b/compiler/asciitables.nim index c25d54bde..39bb26a5c 100644 --- a/compiler/asciitables.nim +++ b/compiler/asciitables.nim @@ -71,7 +71,7 @@ iterator parseTableCells*(s: string, delim = '\t'): Cell = proc alignTable*(s: string, delim = '\t', fill = ' ', sep = " "): string = ## formats a `delim`-delimited `s` representing a table; each cell is aligned ## to a width that's computed for each column; consecutive columns are - ## delimted by `sep`, and alignment space is filled using `fill`. + ## delimited by `sep`, and alignment space is filled using `fill`. ## More customized formatting can be done by calling `parseTableCells` directly. for cell in parseTableCells(s, delim): result.add cell.text |