Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Typo: Add a missing "of" #300

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -56,4 +56,4 @@ static private async Task ShowWorkItemDetails(VssConnection connection, int work
}
}
}
}
}