removed the from DI (#28900)

removed "The" from "what is Dependency Injection".
(minor grammatical improvement to  guide/english/javascript/angularjs-interview-questions/index.md)
pull/29573/head
Chris Bassey 2018-10-26 15:30:21 +01:00 committed by Ariel
parent e29cf154d0
commit 5d5d865e72
1 changed files with 1 additions and 1 deletions

View File

@ -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.