mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Rename write_ascii_table to write_plain_table
This commit is contained in:
@@ -59,7 +59,7 @@ This outputs:
|
|||||||
|
|
||||||
build(tbl)
|
build(tbl)
|
||||||
|
|
||||||
write_ascii_table(stdio_writer(), tbl)
|
write_plain_table(stdio_writer(), tbl)
|
||||||
write_markdown_table(stdio_writer(), tbl)
|
write_markdown_table(stdio_writer(), tbl)
|
||||||
|
|
||||||
This outputs:
|
This outputs:
|
||||||
|
|||||||
@@ -254,7 +254,7 @@ write_html_table :: proc(w: io.Writer, tbl: ^Table) {
|
|||||||
io.write_string(w, "</table>\n")
|
io.write_string(w, "</table>\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
write_ascii_table :: proc(w: io.Writer, tbl: ^Table) {
|
write_plain_table :: proc(w: io.Writer, tbl: ^Table) {
|
||||||
if tbl.dirty {
|
if tbl.dirty {
|
||||||
build(tbl)
|
build(tbl)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user