mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-01 11:27:15 +03:00
11 lines
371 B
Go
11 lines
371 B
Go
|
package udiff
|
||
|
|
||
|
// UnifiedDiff is a unified diff.
|
||
|
type UnifiedDiff = unified
|
||
|
|
||
|
// ToUnifiedDiff takes a file contents and a sequence of edits, and calculates
|
||
|
// a unified diff that represents those edits.
|
||
|
func ToUnifiedDiff(fromName, toName, content string, edits []Edit, numLines int) (UnifiedDiff, error) {
|
||
|
return toUnified(fromName, toName, content, edits, numLines)
|
||
|
}
|