chore: fix some function names in comments (#1862)

Signed-off-by: threehonor <pengqi@email.cn>
This commit is contained in:
threehonor
2025-03-28 11:03:31 +08:00
committed by GitHub
parent cc05f7e6fd
commit 956d38be5e
4 changed files with 4 additions and 4 deletions

View File

@@ -1234,7 +1234,7 @@ func trelloGetLists() ([]TrelloData, error) {
return resp, sendGetReq(fmt.Sprintf(pathGetAllLists, trelloBoardID, apiKey, apiToken), &resp)
}
// trelloNewList creates a new list on a specified boards on trello
// trelloCreateNewList creates a new list on a specified boards on trello
func trelloCreateNewList() error {
if trelloBoardID == "" {
return errors.New("trelloBoardID not set, cannot create a new list")