From 117185b5e5d7a4672af6ba1f1341de98fa8d1fef Mon Sep 17 00:00:00 2001 From: SriNath <12288245+SrChip15@users.noreply.github.com> Date: Wed, 19 Jun 2019 09:13:47 -0400 Subject: [PATCH] docs: fix typographical error in faq (#4321) change "typedi" to "typed" in how to use TypeORM with a dependency injection tool question --- docs/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index 24cf6d6bfe..62236a2ac7 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -137,7 +137,7 @@ and add extra columns in there. In TypeORM you can use service containers. Service containers allow you to inject custom services in some places, like in subscribers or custom naming strategies. For example, you can get access to ConnectionManager from any place using a service container. -Here is an example for how you can set up typedi service containers with TypeORM. Note: you can setup any service container with TypeORM. +Here is an example for how you can set up typed service containers with TypeORM. Note: you can setup any service container with TypeORM. ```typescript import {useContainer, createConnection} from "typeorm";