diff options
author | Antoine Descamps <antoine@antoinedescamps.fr> | 2016-06-08 09:32:37 +0200 |
---|---|---|
committer | Antoine Descamps <antoine@antoinedescamps.fr> | 2016-06-08 09:32:37 +0200 |
commit | cf7e4b027ada723c782f0e25615c080f0bdac006 (patch) | |
tree | 5b4a237ae2a43a0f3c608d5199ba140171f10692 | |
parent | e92ae5199d52fd59540a800bec7eef46cd778257 (diff) | |
download | flatbuffers-cf7e4b027ada723c782f0e25615c080f0bdac006.tar.gz flatbuffers-cf7e4b027ada723c782f0e25615c080f0bdac006.tar.bz2 flatbuffers-cf7e4b027ada723c782f0e25615c080f0bdac006.zip |
Fix typo
"your platform can't handling..." => "your platform can't handle"
-rw-r--r-- | php/FlatbufferBuilder.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/php/FlatbufferBuilder.php b/php/FlatbufferBuilder.php index 3738582e..fce4a718 100644 --- a/php/FlatbufferBuilder.php +++ b/php/FlatbufferBuilder.php @@ -233,7 +233,7 @@ class FlatbufferBuilder public function putUint($x) { if ($x > PHP_INT_MAX) { - throw new \InvalidArgumentException("your platform can't handling uint correctly. use 64bit machine."); + throw new \InvalidArgumentException("your platform can't handle uint correctly. use 64bit machine."); } $this->bb->putUint($this->space -= 4, $x); @@ -245,7 +245,7 @@ class FlatbufferBuilder public function putLong($x) { if ($x > PHP_INT_MAX) { - throw new \InvalidArgumentException("your platform can't handling long correctly. use 64bit machine."); + throw new \InvalidArgumentException("your platform can't handle long correctly. use 64bit machine."); } $this->bb->putLong($this->space -= 8, $x); @@ -257,7 +257,7 @@ class FlatbufferBuilder public function putUlong($x) { if ($x > PHP_INT_MAX) { - throw new \InvalidArgumentException("your platform can't handling ulong correctly. this is php limitations. please wait extension release."); + throw new \InvalidArgumentException("your platform can't handle ulong correctly. this is php limitations. please wait extension release."); } $this->bb->putUlong($this->space -= 8, $x); |