docs: fix typo (#1122)

This commit is contained in:
Quiwy
2025-07-16 13:01:49 +02:00
committed by GitHub
parent 2e806f7b08
commit 5ee3077f5d
4 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ import (
type Label struct {
// The unique, numeric id of this label.
ID int64 `xorm:"bigint autoincr not null unique pk" json:"id" param:"label"`
// The title of the lable. You'll see this one on tasks associated with it.
// The title of the label. You'll see this one on tasks associated with it.
Title string `xorm:"varchar(250) not null" json:"title" valid:"runelength(1|250)" minLength:"1" maxLength:"250"`
// The label description.
Description string `xorm:"longtext null" json:"description"`

View File

@@ -8175,7 +8175,7 @@ const docTemplate = `{
"type": "integer"
},
"title": {
"description": "The title of the lable. You'll see this one on tasks associated with it.",
"description": "The title of the label. You'll see this one on tasks associated with it.",
"type": "string",
"maxLength": 250,
"minLength": 1

View File

@@ -8167,7 +8167,7 @@
"type": "integer"
},
"title": {
"description": "The title of the lable. You'll see this one on tasks associated with it.",
"description": "The title of the label. You'll see this one on tasks associated with it.",
"type": "string",
"maxLength": 250,
"minLength": 1

View File

@@ -353,7 +353,7 @@ definitions:
description: The unique, numeric id of this label.
type: integer
title:
description: The title of the lable. You'll see this one on tasks associated
description: The title of the label. You'll see this one on tasks associated
with it.
maxLength: 250
minLength: 1