Skip to content

Commit bbb497e

Browse files
authored
Fix docs
1 parent 9d16f9e commit bbb497e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ An example on how to create a new order to be shipped:
109109
$order->items[] = $item;
110110

111111
// This will var_dump the newly created order, and order should be wrapped in an array.
112-
var_dump($shipStation->orders->post([$order], 'createorder'));
113-
// or with the helper: $shipStation->orders->create([$order]); would be the same.
112+
var_dump($shipStation->orders->post($order, 'createorder'));
113+
// or with the helper: $shipStation->orders->create($order); would be the same.
114114
```
115115
### DELETE
116116
```php

0 commit comments

Comments
 (0)