From 0c8730cdd3e4b24d4030c87a282ae9bb92746544 Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Mon, 8 Jul 2024 19:15:29 +0300 Subject: [PATCH] docs: fix type in module path (#8011) --- 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 8f50f2a95d..3802d14e67 100644 --- a/www/apps/book/app/basics/modules-and-services/page.mdx +++ b/www/apps/book/app/basics/modules-and-services/page.mdx @@ -48,7 +48,7 @@ A module must have an `index.ts` file in its root directory that exports its def For example, create the file `src/modules/hello/index.ts` with the following content: -```ts title="src/modules/hello.index.ts" highlights={[["5", "", "The main service of the module."]]} +```ts title="src/modules/hello/index.ts" highlights={[["5", "", "The main service of the module."]]} import HelloModuleService from "./service" import { Module } from "@medusajs/utils"