diff options
| -rw-r--r-- | diffbytes.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/diffbytes.go b/diffbytes.go index e92e3d5f..2698bf55 100644 --- a/diffbytes.go +++ b/diffbytes.go @@ -213,7 +213,10 @@ type BytesDiffChunk struct { type BytesDiffChunkKind int const ( + // BytesDiffChunkKindUnchanged represents an unchanged diff chunk. BytesDiffChunkKindUnchanged BytesDiffChunkKind = iota + // BytesDiffChunkKindDeleted represents a deleted diff chunk. BytesDiffChunkKindDeleted + // BytesDiffChunkKindAdded represents an added diff chunk. BytesDiffChunkKindAdded ) |
