Fixing sample (#1879)

This commit is contained in:
Sébastien Ros
2018-10-02 00:43:40 -07:00
committed by Ryan Gribble
parent 5a9e78ad6d
commit 2cdc2679b1
+1 -1
View File
@@ -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);