aboutsummaryrefslogtreecommitdiff
path: root/php
diff options
context:
space:
mode:
authorAntoine Descamps <antoine@antoinedescamps.fr>2016-06-08 09:32:37 +0200
committerAntoine Descamps <antoine@antoinedescamps.fr>2016-06-08 09:32:37 +0200
commitcf7e4b027ada723c782f0e25615c080f0bdac006 (patch)
tree5b4a237ae2a43a0f3c608d5199ba140171f10692 /php
parente92ae5199d52fd59540a800bec7eef46cd778257 (diff)
downloadflatbuffers-cf7e4b027ada723c782f0e25615c080f0bdac006.tar.gz
Fix typo
"your platform can't handling..." => "your platform can't handle"
Diffstat (limited to 'php')
-rw-r--r--php/FlatbufferBuilder.php6
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);