Skip to content

Commit c8b2104

Browse files
committed
Fix typos
1 parent b9860c8 commit c8b2104

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/array_functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function array_split_filter(array $array, callable $callback)
111111
* @param array $array
112112
* @param int $numberOfPieces
113113
* @param bool $preserveKeys
114-
* @throws \InvalidArgumentException if the provided argument $numberOfPieces is lower then 1
114+
* @throws \InvalidArgumentException if the provided argument $numberOfPieces is lower than 1
115115
*
116116
* @return array
117117
*/

tests/ArraySplitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function it_can_handle_an_empty_array()
1919
* @dataProvider argumentsProvider
2020
* @test
2121
*/
22-
public function it_throws_exception_when_second_parameter_is_lower_then_1($numberOfPieces, $mustThrow)
22+
public function it_throws_exception_when_second_parameter_is_lower_than_1($numberOfPieces, $mustThrow)
2323
{
2424
$exception = null;
2525
try {

0 commit comments

Comments
 (0)