From 5d5d865e72483a08a795208d50129b3e463d98a3 Mon Sep 17 00:00:00 2001 From: Chris Bassey Date: Fri, 26 Oct 2018 15:30:21 +0100 Subject: [PATCH] removed the from DI (#28900) removed "The" from "what is Dependency Injection". (minor grammatical improvement to guide/english/javascript/angularjs-interview-questions/index.md) --- guide/english/javascript/angularjs-interview-questions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/angularjs-interview-questions/index.md b/guide/english/javascript/angularjs-interview-questions/index.md index 504fcfaca52..bd36910bb6f 100644 --- a/guide/english/javascript/angularjs-interview-questions/index.md +++ b/guide/english/javascript/angularjs-interview-questions/index.md @@ -45,7 +45,7 @@ Answer: $timeout is AngularJs' wrapper for window.setTimeout, you cancel a timeo // write your code. }); -Question: What is the Dependency Injection? +Question: What is Dependency Injection? Answer: Dependency Injection (DI) is a software design pattern that deals with how components get hold of their dependencies. The AngularJS injector subsystem is in charge of creating components, resolving their dependencies, and providing them to other components as requested.