golint & go vet

This commit is contained in:
Yasuhiro Matsumoto 2017-04-16 23:38:53 +09:00
parent e1b7bac4e6
commit 70b6261e34
6 changed files with 9 additions and 7 deletions

View file

@ -25,7 +25,7 @@ func (c *Client) GetNotifications() ([]*Notification, error) {
return notifications, nil
}
// GetNotifications return notifications.
// GetNotification return notifications.
func (c *Client) GetNotification(id int64) (*Notification, error) {
var notification Notification
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/notifications/%d", id), nil, &notification)