Create a modified hunk.
(start: usize, end: usize)
| 219 | |
| 220 | /// Create a modified hunk. |
| 221 | pub fn modified(start: usize, end: usize) -> Self { |
| 222 | Self::new(start, end, HunkKind::Modified) |
| 223 | } |
| 224 | |
| 225 | /// Create an unchanged hunk. |
| 226 | pub fn unchanged(start: usize, end: usize) -> Self { |