Skip to content

Commit 2864698

Browse files
authored
Merge pull request #72 from shdehnavi/fix-readme-typo
Fix typo in README.md
2 parents c52890a + 025fa50 commit 2864698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ With PostgreSQL's `BETWEEN SYMMETRIC` keyword you don't have to do this anymore,
10631063
You can now use e.g. min/max values with the following code without having to reorder these values if the meaning has been swapped by the user when entering them:
10641064
```php
10651065
$min = $request->integer('min');
1066-
$min = $request->integer('max');
1066+
$max = $request->integer('max');
10671067

10681068
// before:
10691069
$query->whereBetween('price', [min($min, $max), max($min, $max)]);

0 commit comments

Comments
 (0)