Returns the patch as a plain string
()
| 24 | |
| 25 | // Returns the patch as a plain string |
| 26 | func (self *Patch) FormatPlain() string { |
| 27 | return formatPlain(self) |
| 28 | } |
| 29 | |
| 30 | // Returns a range of lines from the patch as a plain string (range is inclusive) |
| 31 | func (self *Patch) FormatRangePlain(startIdx int, endIdx int) string { |