Skip to content

Commit

Permalink
Fix Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
azenla committed Aug 30, 2014
1 parent d261dd3 commit 7b3fd73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/common/github.dart
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class GitHub {
* Fetches Issues for a Repository
*/
Stream<Issue> issues(RepositorySlug slug, {String state: "open"}) {
return new PaginationHelper(this).objects("GET", "/repos/${slug.fullName}/issues", params: {"state": state}, Issue.fromJSON);
return new PaginationHelper(this).objects("GET", "/repos/${slug.fullName}/issues", Issue.fromJSON, params: {"state": state});
}

/**
Expand Down

0 comments on commit 7b3fd73

Please sign in to comment.