Add new note to the current list
(mut self, note: &str)
| 69 | |
| 70 | /// Add new note to the current list |
| 71 | pub fn add_note(mut self, note: &str) -> Self { |
| 72 | self.notes.push(note.to_owned()); |
| 73 | self |
| 74 | } |
| 75 | |
| 76 | /// Add new help to the current list |
| 77 | pub fn add_help(mut self, help: &str) -> Self { |
no outgoing calls
no test coverage detected