Skip to content

Commit

Permalink
Fixed typo in README examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaj committed May 20, 2024
1 parent f8c5288 commit 6913b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ $story = [
];
$result = $managementClient->post(
'spaces/' . $spaceId . '/stories/',
[ 'space' => $story ]
[ 'story' => $story ]
)->getBody();
print_r($result);
```
Expand All @@ -128,7 +128,7 @@ $story = [
];
$result = $managementClient->put(
'spaces/' . $spaceId . '/stories/' . $storyId,
[ 'space' => $story ]
[ 'story' => $story ]
)->getBody();
print_r($result);
```
Expand Down

0 comments on commit 6913b00

Please sign in to comment.