Skip to content

Commit

Permalink
Merge pull request #108 from tomaj/fix-readme-typo
Browse files Browse the repository at this point in the history
Fixed typo in README examples
  • Loading branch information
roberto-butti authored May 21, 2024
2 parents f8c5288 + 6913b00 commit f9ccc1f
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 f9ccc1f

Please sign in to comment.