The code below prints an empty string. ```rust fn main() { let toml = r##" [project] x = "y" "##; let doc = toml.parse::<toml_edit::Document<String>>().unwrap(); println!("{}", doc.to_string()); } ``` If I remove the `project` header it seems to print the key and value pair. `DocumentMut` also works perfectly fine.