From 88bfcb7703abf8b37b2d77e1bf6825283a3292e6 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Sat, 4 May 2024 10:43:40 +0200 Subject: [PATCH] Fix broken highlighting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 201c43c..682b556 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ $result = $managementClient->get('spaces/' . $spaceId . '/stories')->getBody(); print_r($result['stories']); ``` -With `getBody()` method you can access the body response, and then access the `'`stories'` key, to access the story list. +With `getBody()` method you can access the body response, and then access the `stories` key, to access the story list. ### Create data, post() method If you need to create data, you have to perform an HTTP request with the `POST` method.