Skip to content

Commit 5c83067

Browse files
DanteDeRuwebchavez
andauthored
Fix docstring that used example tag instead of exception (#415)
* Fix docstring that used `example` tag instead of `exception` * Change also Benchmark/BenchRandomSubset.cs Co-authored-by: bchavez <bchavez@bitarmory.com>
1 parent 59985ee commit 5c83067

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/Benchmark/BenchRandomSubset.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void ShuffleTake()
3939
/// Helper to pick random subset of elements out of the list.
4040
/// </summary>
4141
/// <param name="amountToPick">amount of elements to pick of the list.</param>
42-
/// <example cref="ArgumentException">if amountToPick is lower than zero.</example>
42+
/// <exception cref="ArgumentException">if amountToPick is lower than zero.</example>
4343
public IEnumerable<T> PickRandom<T>(IEnumerable<T> items, int amountToPick)
4444
{
4545
if (amountToPick < 0)

Source/Bogus/Faker.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public T PickRandomParam<T>(params T[] items)
251251
/// Helper to pick random subset of elements out of the list.
252252
/// </summary>
253253
/// <param name="amountToPick">amount of elements to pick of the list.</param>
254-
/// <example cref="ArgumentException">if amountToPick is lower than zero.</example>
254+
/// <exception cref="ArgumentException">if amountToPick is lower than zero.</exception>
255255
public IEnumerable<T> PickRandom<T>(IEnumerable<T> items, int amountToPick)
256256
{
257257
if( amountToPick < 0 )

0 commit comments

Comments
 (0)