mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Fix various typos (#20338)
* Fix various typos Found via `codespell -q 3 -S ./options/locale,./options/license,./public/vendor -L actived,allways,attachements,ba,befores,commiter,pullrequest,pullrequests,readby,splitted,te,unknwon` Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		@@ -98,8 +98,8 @@ func releasesOrTags(ctx *context.Context, isTagList bool) {
 | 
			
		||||
		listOptions.PageSize = setting.API.MaxResponseItems
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// TODO(20073) tags are used for compare feature witch needs all tags
 | 
			
		||||
	// filtering is doen at the client side atm
 | 
			
		||||
	// TODO(20073) tags are used for compare feature which needs all tags
 | 
			
		||||
	// filtering is done on the client-side atm
 | 
			
		||||
	tagListStart, tagListEnd := 0, 0
 | 
			
		||||
	if isTagList {
 | 
			
		||||
		tagListStart, tagListEnd = listOptions.GetStartEnd()
 | 
			
		||||
@@ -514,12 +514,12 @@ func EditReleasePost(ctx *context.Context) {
 | 
			
		||||
	ctx.Redirect(ctx.Repo.RepoLink + "/releases")
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// DeleteRelease delete a release
 | 
			
		||||
// DeleteRelease deletes a release
 | 
			
		||||
func DeleteRelease(ctx *context.Context) {
 | 
			
		||||
	deleteReleaseOrTag(ctx, false)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// DeleteTag delete a tag
 | 
			
		||||
// DeleteTag deletes a tag
 | 
			
		||||
func DeleteTag(ctx *context.Context) {
 | 
			
		||||
	deleteReleaseOrTag(ctx, true)
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user