Browse Source

Add missing quote mark

Diego Lapiduz 12 years ago
committed by Will Norris
parent
commit
be720bc862
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      github/git_commits.go

+ 1
- 1
github/git_commits.go View File

@ -19,7 +19,7 @@ type Commit struct {
Tree *Tree `json:"tree,omitempty"` Tree *Tree `json:"tree,omitempty"`
Parents []Commit `json:"parents,omitempty"` Parents []Commit `json:"parents,omitempty"`
Stats *CommitStats `json:"stats,omitempty"` Stats *CommitStats `json:"stats,omitempty"`
URL *string `json:url,omitempty"`
URL *string `json:"url,omitempty"`
} }
func (c Commit) String() string { func (c Commit) String() string {


Loading…
Cancel
Save