Skip to content

Commit 7437464

Browse files
authored
Fix ordering
1 parent ec5502a commit 7437464

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/github/projects.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,16 +114,16 @@ func ListProjects(getClient GetClientFn, t translations.TranslationHelperFunc) (
114114
}
115115

116116
type ListProjectsOptions struct {
117-
// A cursor, as given in the Link header. If specified, the query only searches for events after this cursor.
118-
After string `url:"after,omitempty"`
119-
120117
// A cursor, as given in the Link header. If specified, the query only searches for events before this cursor.
121118
Before string `url:"before,omitempty"`
122119

120+
// A cursor, as given in the Link header. If specified, the query only searches for events after this cursor.
121+
After string `url:"after,omitempty"`
122+
123123
// For paginated result sets, the number of results to include per page.
124124
PerPage int `url:"per_page,omitempty"`
125125

126-
// Q is an optional query string to filter/search projects (when supported).
126+
// Query Limit results to projects of the specified type.
127127
Query string `url:"q,omitempty"`
128128
}
129129

0 commit comments

Comments
 (0)