diff --git a/notification.go b/notification.go index 6fa2436..44ffdd8 100644 --- a/notification.go +++ b/notification.go @@ -25,7 +25,7 @@ func (c *Client) GetNotifications() ([]*Notification, error) { return notifications, nil } -// GetNotifications return notifications. +// GetNotifications return notification. func (c *Client) GetNotification(id int64) (*Notification, error) { var notification Notification err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/notifications/%d", id), nil, ¬ification)