String returns a string representation of the value
()
| 70 | |
| 71 | // String returns a string representation of the value |
| 72 | func (v value) String() string { |
| 73 | return fmt.Sprintf("%s%v", v.Mode(), v.Value()) |
| 74 | } |
| 75 | |
| 76 | // slice represents a difference between two slices |
| 77 | type slice []Diff |