[F] Fixed README

This commit is contained in:
seleznevae 2018-12-01 10:49:22 +03:00
parent 5c4e97ba8a
commit fcdc0f1ded

View File

@ -219,7 +219,7 @@ int main(void)
/* Fill row with data from the container */
std::vector<std::string> arr = {"3", "Earth", "29.78", "288"};
table.row_write_ln(std::begin(arr), std::end(arr));
table.range_write_ln(std::begin(arr), std::end(arr));
std::cout << table.to_string() << std::endl;
}