Commit 2b4d1c7c authored by jbguerraz's avatar jbguerraz Committed by Sander van Harmelen

Fix typo in BoardList struct Labels field (#344)

parent c66433bf
...@@ -49,7 +49,7 @@ func (b IssueBoard) String() string { ...@@ -49,7 +49,7 @@ func (b IssueBoard) String() string {
// GitLab API docs: https://docs.gitlab.com/ce/api/boards.html // GitLab API docs: https://docs.gitlab.com/ce/api/boards.html
type BoardList struct { type BoardList struct {
ID int `json:"id"` ID int `json:"id"`
Labels []*Label `json:"label"` Labels []*Label `json:"labels"`
Position int `json:"position"` Position int `json:"position"`
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment