Browse Source

Fix PagesBuild.UpdatedAt field tag.

Dmitri Shuralyov 9 years ago
committed by GitHub
parent
commit
939928b912
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      github/repos_pages.go

+ 1
- 1
github/repos_pages.go View File

@ -30,7 +30,7 @@ type PagesBuild struct {
Commit *string `json:"commit,omitempty"` Commit *string `json:"commit,omitempty"`
Duration *int `json:"duration,omitempty"` Duration *int `json:"duration,omitempty"`
CreatedAt *Timestamp `json:"created_at,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. // GetPagesInfo fetches information about a GitHub Pages site.


Loading…
Cancel
Save