From 110c6acdcbdf87fcc3664feb272a18a849cde245 Mon Sep 17 00:00:00 2001 From: i2bskn Date: Sun, 31 May 2015 05:48:58 +0900 Subject: [PATCH] Fix comments --- github/issues.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github/issues.go b/github/issues.go index 1d51a3d..05f5477 100644 --- a/github/issues.go +++ b/github/issues.go @@ -72,7 +72,7 @@ type IssueListOptions struct { Labels []string `url:"labels,comma,omitempty"` // Sort specifies how to sort issues. Possible values are: created, updated, - // and comments. Default value is "assigned". + // and comments. Default value is "created". Sort string `url:"sort,omitempty"` // Direction in which to sort issues. Possible values are: asc, desc. @@ -166,7 +166,7 @@ type IssueListByRepoOptions struct { Labels []string `url:"labels,omitempty,comma"` // Sort specifies how to sort issues. Possible values are: created, updated, - // and comments. Default value is "assigned". + // and comments. Default value is "created". Sort string `url:"sort,omitempty"` // Direction in which to sort issues. Possible values are: asc, desc.