(&mut self)
| 77 | } |
| 78 | |
| 79 | fn body(&mut self) -> Result<()> { |
| 80 | let body = self |
| 81 | .prompt |
| 82 | .optional_input(&self.pattern.msg.commit_body, "Commit body")?; |
| 83 | if !body.is_empty() { |
| 84 | self.commit_builder.set_body(&body); |
| 85 | } |
| 86 | Ok(()) |
| 87 | } |
| 88 | |
| 89 | fn footer(&mut self) -> Result<()> { |
| 90 | let footer = self |
no test coverage detected