We can replace ```rust f.write_fmt(format_args!("{} - \"{}\"", name, self)) ``` with ```rust f.write_fmt(format_args!("{name} - \"{self}\"")) ``` to improve code readability and maintainability.