(&mut self, text: &str)
| 330 | } |
| 331 | |
| 332 | pub(super) fn empty_note(&mut self, text: &str) -> &mut Self { |
| 333 | let _ = writeln!(self.buf, "_{text}_"); |
| 334 | self |
| 335 | } |
| 336 | |
| 337 | pub(super) fn blank(&mut self) -> &mut Self { |
| 338 | self.buf.push('\n'); |
no outgoing calls
no test coverage detected