Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 9fb0e16

Browse files
ErichBSchulztbosch
authored andcommitted
docs(guide/concepts): clarify definitions
Closes #7483
1 parent 20221f9 commit 9fb0e16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/guide/concepts.ngdoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ For a more in-depth explanation, see the {@link tutorial/ tutorial}.
1111
|------------------|------------------------------------------|
1212
|{@link concepts#template Template} | HTML with additional markup |
1313
|{@link concepts#directive Directives} | extend HTML with custom attributes and elements |
14-
|{@link concepts#model Model} | the data that is shown to the user and with which the user interacts |
14+
|{@link concepts#model Model} | the data shown to the user in the view and with which the user interacts |
1515
|{@link concepts#scope Scope} | context where the model is stored so that controllers, directives and expressions can access it |
1616
|{@link concepts#expression Expressions} | access variables and functions from the scope |
1717
|{@link concepts#compiler Compiler} | parses the template and instantiates directives and expressions |
1818
|{@link concepts#filter Filter} | formats the value of an expression for display to the user |
1919
|{@link concepts#view View} | what the user sees (the DOM) |
2020
|{@link concepts#databinding Data Binding} | sync data between the model and the view |
2121
|{@link concepts#controller Controller} | the business logic behind views |
22-
|{@link concepts#di Dependency Injection} | Creates and wires objects / functions |
22+
|{@link concepts#di Dependency Injection} | Creates and wires objects and functions |
2323
|{@link concepts#injector Injector} | dependency injection container |
24-
|{@link concepts#module Module} | configures the Injector |
24+
|{@link concepts#module Module} | a container for the different parts of an app including controllers, services, filters, directivess which configures the Injector |
2525
|{@link concepts#service Service} | reusable business logic independent of views |
2626

2727

0 commit comments

Comments
 (0)