Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Commit

Permalink
Update FlatBufferBuilder.php
Browse files Browse the repository at this point in the history
  • Loading branch information
arzzen authored Jan 7, 2017
1 parent ce50a9a commit 05867b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FlatBufferBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public function putInt($x)
public function putUint($x)
{
if ($x > PHP_INT_MAX) {
throw new \InvalidArgumentException("your platform can't handle uint correctly. use 64bit machine.");
throw new \InvalidArgumentException("your platform can't handle uint correctly. Use a 64bit machine.");
}

$this->bb->putUint($this->space -= 4, $x);
Expand Down

0 comments on commit 05867b1

Please sign in to comment.