Fix another batch of spelling typos (#13915)

* Fix typos

* Remove repeated words

* Minor grammar fixes
This commit is contained in:
Nathan Baulch
2022-11-08 00:30:24 +11:00
committed by GitHub
parent 3dc8403e10
commit 9f1fa0e440
1449 changed files with 2576 additions and 2581 deletions

View File

@@ -40,7 +40,7 @@ class OrderApiTest extends TestCase
$order->setStatus("invalid_value");
}
// test deseralization of order
// test deserialization of order
public function testDeserializationOfOrder()
{
$order_json = <<<ORDER
@@ -67,7 +67,7 @@ ORDER;
$this->assertSame(false, $order->getComplete());
}
// test deseralization of array of array of order
// test deserialization of array of array of order
public function testDeserializationOfArrayOfArrayOfOrder()
{
$order_json = <<<ORDER
@@ -97,7 +97,7 @@ ORDER;
$this->assertSame(false, $_order->getComplete());
}
// test deseralization of map of map of order
// test deserialization of map of map of order
public function testDeserializationOfMapOfMapOfOrder()
{
$order_json = <<<ORDER