diff --git a/examples/example.go b/examples/example.go index 9b361e3..0b3125a 100644 --- a/examples/example.go +++ b/examples/example.go @@ -17,14 +17,14 @@ func main() { fmt.Println("Recently updated repositories owned by user willnorris:") opt := &github.RepositoryListOptions{Type: "owner", Sort: "updated", Direction: "desc"} - repos, err := client.Repositories.List("willnorris", opt) + repos, _, err := client.Repositories.List("willnorris", opt) if err != nil { fmt.Printf("error: %v\n\n", err) } else { fmt.Printf("%#v\n\n", repos) } - rate, err := client.RateLimit() + rate, _, err := client.RateLimit() if err != nil { fmt.Printf("Error fetching rate limit: %#v\n\n", err) } else {