Skip to content

Commit 1335cbf

Browse files
committedAug 2, 2019
Merged PR 492068: typoe fix to Task<List<WorkItem>>
typoe fix to Task<List<WorkItem>>
1 parent 67f3df5 commit 1335cbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/integrate/quickstarts/work-item-quickstart.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ public class ExecuteQuery
7676
/// Execute a WIQL query to return a list of bugs using the .NET client library
7777
/// </summary>
7878
/// <returns>List of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</returns>
79-
public async List<WorkItem> RunGetBugsQueryUsingClientLib()
80-
{
79+
public async Task<List<WorkItem>> RunGetBugsQueryUsingClientLib()
80+
{
8181
Uri uri = new Uri(_uri);
8282
string personalAccessToken = _personalAccessToken;
8383
string project = _project;

0 commit comments

Comments
 (0)
Please sign in to comment.