Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions textdiff/textdiff.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ type Hunk[T string | []byte] struct {
// If x and y are identical, the output has length zero.
//
// The following options are supported: [diff.Context], [diff.Minimal], [diff.Fast],
// [textdiff.IndentHeuristic]
// [IndentHeuristic]
//
// Important: The output is not guaranteed to be stable and may change with minor version upgrades.
// DO NOT rely on the output being stable.
Expand Down Expand Up @@ -228,7 +228,7 @@ const missingNewline = "\n\\ No newline at end of file\n"
// the other in unified format.
//
// The following options are supported: [diff.Context], [diff.Minimal], [diff.Fast],
// [IndentHeuristic], [TerminalColors].
// [IndentHeuristic], [TerminalColors]
//
// Important: The output is not guaranteed to be stable and may change with minor version upgrades.
// DO NOT rely on the output being stable.
Expand Down
Loading