diff --git a/docs/content/docs/plugins/plugin-examples/defining-db-entity.md b/docs/content/docs/plugins/plugin-examples/defining-db-entity.md index 1a0837f35f..e286085ac6 100644 --- a/docs/content/docs/plugins/plugin-examples/defining-db-entity.md +++ b/docs/content/docs/plugins/plugin-examples/defining-db-entity.md @@ -39,7 +39,7 @@ import { VendurePlugin } from '@vendure/core'; import { ProductReview } from './product-review.entity'; @VendurePlugin({ - entites: [ProductReview], + entities: [ProductReview], }) export class ReviewsPlugin {} ```