From 939928b912496ed4fbeb6e4beb2467b4fa540af7 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Mon, 12 Dec 2016 20:57:40 -0500 Subject: [PATCH] Fix PagesBuild.UpdatedAt field tag. --- github/repos_pages.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/repos_pages.go b/github/repos_pages.go index 5194f27..ddd8301 100644 --- a/github/repos_pages.go +++ b/github/repos_pages.go @@ -30,7 +30,7 @@ type PagesBuild struct { Commit *string `json:"commit,omitempty"` Duration *int `json:"duration,omitempty"` CreatedAt *Timestamp `json:"created_at,omitempty"` - UpdatedAt *Timestamp `json:"created_at,omitempty"` + UpdatedAt *Timestamp `json:"updated_at,omitempty"` } // GetPagesInfo fetches information about a GitHub Pages site.