diff --git a/README.md b/README.md index 24c3476..1369bb8 100644 --- a/README.md +++ b/README.md @@ -219,7 +219,7 @@ int main(void) /* Fill row with data from the container */ std::vector 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; }