Skip to content

Commit

Permalink
Fix XML documentation (#80085)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornen77 committed Jan 1, 2023
1 parent 1613b9d commit a6f84d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public SemaphoreSlim(int initialCount)
/// <exception cref="System.ArgumentOutOfRangeException"> <paramref name="initialCount"/>
/// is less than 0. -or-
/// <paramref name="initialCount"/> is greater than <paramref name="maxCount"/>. -or-
/// <paramref name="maxCount"/> is less than 0.</exception>
/// <paramref name="maxCount"/> is equal to or less than 0.</exception>
public SemaphoreSlim(int initialCount, int maxCount)
{
if (initialCount < 0 || initialCount > maxCount)
Expand Down

0 comments on commit a6f84d4

Please sign in to comment.