From 334d254517b56d8b3fda237ef60a13efc770dcef Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 20 Jan 2015 09:47:10 -0900 Subject: [PATCH] Fixed a typo in client --- models/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/client.go b/models/client.go index 0afe388..f094cce 100644 --- a/models/client.go +++ b/models/client.go @@ -67,7 +67,7 @@ func NewClient(httpClient *http.Client) *Client { // ListOptions specifies general pagination options for fetching a list of results type ListOptions struct { PerPage int `url:",omitempty" json:",omitempty"` - Page int `url:",moitempty" json:",omitempty"` + Page int `url:",omitempty" json:",omitempty"` } func (o ListOptions) PageOrDefault() int {