Create statistics for a deleted file. # Arguments `path` - The file path `lines` - Number of lines in the deleted file
(path: impl Into<String>, lines: usize)
| 127 | /// * `path` - The file path |
| 128 | /// * `lines` - Number of lines in the deleted file |
| 129 | pub fn deleted(path: impl Into<String>, lines: usize) -> Self { |
| 130 | Self::new(path, 0, lines, 'D') |
| 131 | } |
| 132 | |
| 133 | /// Create statistics for a modified file. |
| 134 | /// |