(&mut self, text: &str)
| 320 | } |
| 321 | |
| 322 | pub(super) fn line(&mut self, text: &str) -> &mut Self { |
| 323 | let _ = writeln!(self.buf, "{text}"); |
| 324 | self |
| 325 | } |
| 326 | |
| 327 | pub(super) fn bullet(&mut self, text: &str) -> &mut Self { |
| 328 | let _ = writeln!(self.buf, "- {text}"); |
no outgoing calls
no test coverage detected