Skip to content

Commit

Permalink
docs: Fix typos on file and directory names in plugin tutorial (#2729)
Browse files Browse the repository at this point in the history
  • Loading branch information
saoudi-h authored Mar 11, 2024
1 parent 8f9fd98 commit 7dd258c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/guides/developer-guide/plugins/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ We'll start by creating a new directory to house our plugin, add create the main
├── wishlist.plugin.ts
```

```ts title="src/plugins/reviews-plugin/reviews.plugin.ts"
```ts title="src/plugins/reviews-plugin/wishlist.plugin.ts"
import { PluginCommonModule, VendurePlugin } from '@vendure/core';

@VendurePlugin({
Expand Down Expand Up @@ -509,7 +509,7 @@ import { Args, Mutation, Query, Resolver } from '@nestjs/graphql';
import { Allow, Ctx, Permission, RequestContext, Transaction } from '@vendure/core';

import { WishlistItem } from '../entities/wishlist-item.entity';
import { WishlistService } from '../service/wishlist.service';
import { WishlistService } from '../services/wishlist.service';

@Resolver()
export class WishlistShopResolver {
Expand Down

0 comments on commit 7dd258c

Please sign in to comment.