From d92191ec7fc6e982f1c3e0b7f62fdc25e5e55ca6 Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Tue, 18 Nov 2025 11:32:45 +0700 Subject: [PATCH] Fix typos in some files --- modules/structs/release.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/structs/release.go b/modules/structs/release.go index 6a3e87ccbc..407a2bf974 100644 --- a/modules/structs/release.go +++ b/modules/structs/release.go @@ -13,7 +13,7 @@ type Release struct { ID int64 `json:"id"` // The name of the git tag associated with the release TagName string `json:"tag_name"` - // The target commitish for the release + // The target committish for the release Target string `json:"target_commitish"` // The display title of the release Title string `json:"name"` @@ -49,7 +49,7 @@ type CreateReleaseOption struct { TagName string `json:"tag_name" binding:"Required"` // The message for the git tag TagMessage string `json:"tag_message"` - // The target commitish for the release + // The target committish for the release Target string `json:"target_commitish"` // The display title of the release Title string `json:"name"` @@ -65,7 +65,7 @@ type CreateReleaseOption struct { type EditReleaseOption struct { // The new name of the git tag TagName string `json:"tag_name"` - // The new target commitish for the release + // The new target committish for the release Target string `json:"target_commitish"` // The new display title of the release Title string `json:"name"`