diff --git a/docs/eager-and-lazy-relations.md b/docs/eager-and-lazy-relations.md index b082af615..3859d8f96 100644 --- a/docs/eager-and-lazy-relations.md +++ b/docs/eager-and-lazy-relations.md @@ -142,6 +142,6 @@ const categories = await question.categories ``` Note: if you came from other languages (Java, PHP, etc.) and are used to use lazy relations everywhere - be careful. -Those languages aren't asynchronous and lazy loading is achieved different way, that's why you don't work with promises there. +Those languages aren't asynchronous and lazy loading is achieved in a different way, that's why you don't work with promises there. In JavaScript and Node.JS you have to use promises if you want to have lazy-loaded relations. This is non-standard technique and considered experimental in TypeORM.