From 01693cb155294ab300433466f078b724a282a8da Mon Sep 17 00:00:00 2001 From: "beKool.sh" <76424367+beKoool@users.noreply.github.com> Date: Sun, 29 Oct 2023 17:13:23 +0545 Subject: [PATCH] Fix random spaces --- docs/pages/Developing/API-docs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/Developing/API-docs.md b/docs/pages/Developing/API-docs.md index 09e4f87..e8ee521 100644 --- a/docs/pages/Developing/API-docs.md +++ b/docs/pages/Developing/API-docs.md @@ -39,9 +39,9 @@ fetch("http://127.0.0.1:5000/api/answer", { In response, you will get a JSON document containing the answer,query and the result: ```json { - "answer": " Hi there! How can I help you?\n", + "answer": "Hi there! How can I help you?\n", "query": "Hi", - "result": " Hi there! How can I help you?\nSOURCES:" + "result": "Hi there! How can I help you?\nSOURCES:" } ```