(&mut self, text: &str)
| 325 | } |
| 326 | |
| 327 | pub(super) fn bullet(&mut self, text: &str) -> &mut Self { |
| 328 | let _ = writeln!(self.buf, "- {text}"); |
| 329 | self |
| 330 | } |
| 331 | |
| 332 | pub(super) fn empty_note(&mut self, text: &str) -> &mut Self { |
| 333 | let _ = writeln!(self.buf, "_{text}_"); |
no outgoing calls
no test coverage detected