diff --git a/modules/git/object_id.go b/modules/git/object_id.go index 26736bb766..ecbc1587d4 100644 --- a/modules/git/object_id.go +++ b/modules/git/object_id.go @@ -80,7 +80,7 @@ func NewIDFromString(hexHash string) (ObjectID, error) { } // IsEmptyCommitID checks if an hexadecimal string represents an empty commit according to git (only '0'). -// If objectFormat is not nil, the length will be checked as well (otherwise the lenght must match the sha1 or sha256 length). +// If objectFormat is not nil, the length will be checked as well (otherwise the length must match the sha1 or sha256 length). func IsEmptyCommitID(commitID string, objectFormat ObjectFormat) bool { if commitID == "" { return true diff --git a/poetry.lock b/poetry.lock index 277775e50c..88a12b6a69 100644 --- a/poetry.lock +++ b/poetry.lock @@ -16,13 +16,13 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "codespell" -version = "2.2.6" +version = "2.3.0" description = "Codespell" optional = false python-versions = ">=3.8" files = [ - {file = "codespell-2.2.6-py3-none-any.whl", hash = "sha256:9ee9a3e5df0990604013ac2a9f22fa8e57669c827124a2e961fe8a1da4cacc07"}, - {file = "codespell-2.2.6.tar.gz", hash = "sha256:a8c65d8eb3faa03deabab6b3bbe798bea72e1799c7e9e955d57eca4096abcff9"}, + {file = "codespell-2.3.0-py3-none-any.whl", hash = "sha256:a9c7cef2501c9cfede2110fd6d4e5e62296920efe9abfb84648df866e47f58d1"}, + {file = "codespell-2.3.0.tar.gz", hash = "sha256:360c7d10f75e65f67bad720af7007e1060a5d395670ec11a7ed1fed9dd17471f"}, ] [package.extras] diff --git a/services/webhook/default.go b/services/webhook/default.go index ea877698c8..089ff8bae3 100644 --- a/services/webhook/default.go +++ b/services/webhook/default.go @@ -77,7 +77,7 @@ func (defaultHandler) NewRequest(ctx context.Context, w *webhook_model.Webhook, // see https://codeberg.org/codeberg/community/issues/1556 payloadContent, err = substituteRefShortName(payloadContent) if err != nil { - return nil, nil, fmt.Errorf("could not substiture ref: %w", err) + return nil, nil, fmt.Errorf("could not substitute ref: %w", err) } }