mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-21 22:05:20 +00:00
Rename write_ascii_table to write_plain_table
This commit is contained in:
@@ -59,7 +59,7 @@ This outputs:
|
||||
|
||||
build(tbl)
|
||||
|
||||
write_ascii_table(stdio_writer(), tbl)
|
||||
write_plain_table(stdio_writer(), tbl)
|
||||
write_markdown_table(stdio_writer(), tbl)
|
||||
|
||||
This outputs:
|
||||
|
||||
@@ -254,7 +254,7 @@ write_html_table :: proc(w: io.Writer, tbl: ^Table) {
|
||||
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 {
|
||||
build(tbl)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user