From 65bfe8293b582fd7a5679db2ec2b4b90cfa19991 Mon Sep 17 00:00:00 2001 From: rohan436 Date: Sun, 29 Mar 2026 11:10:27 +0800 Subject: [PATCH] docs: fix typo in inline diff comment --- git/patch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/patch.go b/git/patch.go index ad8d98255..aae881286 100644 --- a/git/patch.go +++ b/git/patch.go @@ -63,7 +63,7 @@ func (s *DiffSection) diffFor(line *git.DiffLine) string { func diffsToString(diffs []diffmatchpatch.Diff, lineType git.DiffLineType) string { buf := bytes.NewBuffer(nil) - // Reproduce signs which are cutted for inline diff before. + // Reproduce signs that were cut off for inline diff before. switch lineType { case git.DiffLineAdd: buf.WriteByte('+')