Remove another old TODO

This commit is contained in:
Filip Tibell 2023-01-23 16:20:07 -05:00
parent f549b98925
commit dc8206d9fd
No known key found for this signature in database

View file

@ -112,7 +112,6 @@ pub fn pretty_format_value(
depth: usize,
) -> anyhow::Result<()> {
// TODO: Handle tables with cyclic references
// TODO: Handle other types like function, userdata, ...
match &value {
LuaValue::Nil => write!(buffer, "nil")?,
LuaValue::Boolean(true) => write!(buffer, "{COLOR_YELLOW}true{COLOR_RESET}")?,