Skip to content

Commit

Permalink
Fixing sample (#1879)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros authored and ryangribble committed Oct 2, 2018
1 parent 5a9e78a commit 2cdc267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ For example, this is how you could find all issues updated in the past two weeks
var recently = new IssueRequest
{
Filter = IssueFilter.All,
State = ItemState.All,
State = ItemStateFilter.All,
Since = DateTimeOffset.Now.Subtract(TimeSpan.FromDays(14))
};
var issues = await client.Issue.GetAllForCurrent(recently);
Expand Down

0 comments on commit 2cdc267

Please sign in to comment.