From f4416632241630ada422e663eaa2c8abb48cd8ef Mon Sep 17 00:00:00 2001 From: Mostafa Al Mohammad Date: Thu, 11 Jul 2024 03:53:09 -0400 Subject: [PATCH] docs: fix typo in curl command example (#8071) ## Documentation Typo Fix: curl Command for Testing Service This pull request addresses a typo in the documentation for testing the service via curl command on the page: [https://docs.medusajs.com/v2/basics/modules-and-services](https://docs.medusajs.com/v2/basics/modules-and-services) **Initial Command (incorrect):** ``` curl http://locahost:9000/store/custom ``` **Corrected Command:** ``` curl http://localhost:9000/store/custom ``` The typo involved a missing "l" in "localhost". This fix ensures users can successfully test the service by providing the correct curl command. --- www/apps/book/app/basics/modules-and-services/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/book/app/basics/modules-and-services/page.mdx b/www/apps/book/app/basics/modules-and-services/page.mdx index 3802d14e67..15e01c33ad 100644 --- a/www/apps/book/app/basics/modules-and-services/page.mdx +++ b/www/apps/book/app/basics/modules-and-services/page.mdx @@ -118,7 +118,7 @@ npm run dev Finally, send a `GET` request to `/store/custom`: ```bash apiTesting testApiUrl="http://localhost:9000/store/custom" testApiMethod="GET" -curl http://locahost:9000/store/custom +curl http://localhost:9000/store/custom ``` You’ll receive the following response: