Skip to content

Commit

Permalink
Fix typo in AbstractPlatform
Browse files Browse the repository at this point in the history
  • Loading branch information
Majkl578 committed Jul 2, 2018
1 parent 29f1799 commit 7be74dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -3410,7 +3410,7 @@ final public function modifyLimitQuery($query, $limit, $offset = null)

if ($offset < 0) {
throw new DBALException(sprintf(
'Offset must be a positive integer of zero, %d given',
'Offset must be a positive integer or zero, %d given',
$offset
));
}
Expand Down

0 comments on commit 7be74dd

Please sign in to comment.