chore: fix typos throughout the codebase (#10753)

This PR fixes a number of typos throughout the entire repository. Running https://github.com/crate-ci/typos and then changing all occurrences that I naively deemed "safe enough".

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/10753
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Christoph Mewes <christoph@kubermatic.com>
Co-committed-by: Christoph Mewes <christoph@kubermatic.com>
This commit is contained in:
Christoph Mewes 2026-01-26 22:57:33 +01:00 committed by Gusted
parent d934e0c9fb
commit 023a894677
87 changed files with 174 additions and 174 deletions

View file

@ -100,7 +100,7 @@ func GetRepoRawDiffForFile(repo *Repository, startCommit, endCommit string, diff
}
// ParseDiffHunkString parse the diffhunk content and return
func ParseDiffHunkString(diffhunk string) (leftLine, leftHunk, rightLine, righHunk int) {
func ParseDiffHunkString(diffhunk string) (leftLine, leftHunk, rightLine, rightHunk int) {
ss := strings.Split(diffhunk, "@@")
ranges := strings.Split(ss[1][1:], " ")
leftRange := strings.Split(ranges[0], ",")
@ -112,14 +112,14 @@ func ParseDiffHunkString(diffhunk string) (leftLine, leftHunk, rightLine, righHu
rightRange := strings.Split(ranges[1], ",")
rightLine, _ = strconv.Atoi(rightRange[0])
if len(rightRange) > 1 {
righHunk, _ = strconv.Atoi(rightRange[1])
rightHunk, _ = strconv.Atoi(rightRange[1])
}
} else {
log.Debug("Parse line number failed: %v", diffhunk)
rightLine = leftLine
righHunk = leftHunk
rightHunk = leftHunk
}
return leftLine, leftHunk, rightLine, righHunk
return leftLine, leftHunk, rightLine, rightHunk
}
// Example: @@ -1,8 +1,9 @@ => [..., 1, 8, 1, 9]

View file

@ -247,7 +247,7 @@ func TestCheckIfDiffDiffers(t *testing.T) {
require.NoError(t, NewCommand(t.Context(), "switch", "-c", "e-2").Run(&RunOpts{Dir: tmpDir}))
require.NoError(t, NewCommand(t.Context(), "rebase", "main-D-2").Run(&RunOpts{Dir: tmpDir}))
// The diff changed, because it no longers shows the change made to `README`.
// The diff changed, because it no longer shows the change made to `README`.
changed, err := gitRepo.CheckIfDiffDiffers("main-D-2", "e-1", "e-2", nil)
require.NoError(t, err)
assert.False(t, changed) // This should be true.

View file

@ -30,7 +30,7 @@ index d8e4c92..19dc8ad 100644
@@ -1,9 +1,10 @@
--some comment
--- some comment 5
+--some coment 2
+--some comment 2
+-- some comment 3
create or replace procedure test(p1 varchar2)
is
@ -135,7 +135,7 @@ func TestCutDiffAroundLine(t *testing.T) {
@@ -1,9 +1,10 @@
--some comment
--- some comment 5
+--some coment 2`
+--some comment 2`
assert.Equal(t, expected, minusDiff)
// Handle minus diffs properly
@ -148,7 +148,7 @@ func TestCutDiffAroundLine(t *testing.T) {
@@ -1,9 +1,10 @@
--some comment
--- some comment 5
+--some coment 2
+--some comment 2
+-- some comment 3`
assert.Equal(t, expected, minusDiff)

View file

@ -72,7 +72,7 @@ func (f Format) Parser(r io.Reader) *Parser {
return NewParser(r, f)
}
// hexEscaped produces hex-escpaed characters from a string. For example, "\n\0"
// hexEscaped produces hex-escaped characters from a string. For example, "\n\0"
// would turn into "%0a%00".
func (f Format) hexEscaped(delim []byte) string {
escaped := ""

View file

@ -473,7 +473,7 @@ func (repo *Repository) GetCommitsFromIDs(commitIDs []string, ignoreExistence bo
// It's entirely possible the commit no longer exists, we only care
// about the status and verification. Verification is no longer possible,
// but getting the status is still possible with just the ID. We do have
// to assumme the commitID is not shortened, we cannot recover the full
// to assume the commitID is not shortened, we cannot recover the full
// commitID.
id, err := NewIDFromString(commitID)
if err == nil {