From 4d212a236bcd36ac287d30cd172df830d02696bc Mon Sep 17 00:00:00 2001 From: Gautham B A Date: Wed, 18 Nov 2020 16:25:53 +0530 Subject: [PATCH] Typo: Add a missing "of" Added a missing "of" in a comment. --- .../Quickstarts/netcore/ShowWorkItemConsole/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ClientLibrary/Quickstarts/netcore/ShowWorkItemConsole/Program.cs b/ClientLibrary/Quickstarts/netcore/ShowWorkItemConsole/Program.cs index 152ed7b7..b7378b33 100644 --- a/ClientLibrary/Quickstarts/netcore/ShowWorkItemConsole/Program.cs +++ b/ClientLibrary/Quickstarts/netcore/ShowWorkItemConsole/Program.cs @@ -20,7 +20,7 @@ static void Main(string[] args) // Create a connection VssConnection connection = new VssConnection(orgUrl, new VssBasicCredential(string.Empty, personalAccessToken)); - // Show details a work item + // Show details of a work item ShowWorkItemDetails(connection, workItemId).Wait(); } else @@ -56,4 +56,4 @@ static private async Task ShowWorkItemDetails(VssConnection connection, int work } } } -} \ No newline at end of file +}