diff --git a/Source/Benchmark/BenchRandomSubset.cs b/Source/Benchmark/BenchRandomSubset.cs index 508ad6cb..105dad8b 100644 --- a/Source/Benchmark/BenchRandomSubset.cs +++ b/Source/Benchmark/BenchRandomSubset.cs @@ -39,7 +39,7 @@ public void ShuffleTake() /// Helper to pick random subset of elements out of the list. /// /// amount of elements to pick of the list. - /// if amountToPick is lower than zero. + /// if amountToPick is lower than zero. public IEnumerable PickRandom(IEnumerable items, int amountToPick) { if (amountToPick < 0) diff --git a/Source/Bogus/Faker.cs b/Source/Bogus/Faker.cs index 3f23c7ae..958ea097 100644 --- a/Source/Bogus/Faker.cs +++ b/Source/Bogus/Faker.cs @@ -251,7 +251,7 @@ public T PickRandomParam(params T[] items) /// Helper to pick random subset of elements out of the list. /// /// amount of elements to pick of the list. - /// if amountToPick is lower than zero. + /// if amountToPick is lower than zero. public IEnumerable PickRandom(IEnumerable items, int amountToPick) { if( amountToPick < 0 )