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

Commit f3231b9

Browse files
jc00kejbdeboer
authored andcommitted
docs(guide): Fix typos in concepts/model,view.
1 parent a8a3efb commit f3231b9

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
@@ -234,7 +234,7 @@ The separation of the controller and the view is important because:
234234

235235
The model is the data which is used merged with the template to produce the view. To be able to
236236
render the model into the view, the model has to be able to be referenced from the scope. Unlike many
237-
other frameworks Angular makes no restrictions or requirements an the model. There are no classes
237+
other frameworks Angular makes no restrictions or requirements on the model. There are no classes
238238
to inherit from or special accessor methods for accessing or changing the model. The model can be
239239
primitive, object hash, or a full object Type. In short the model is a plain JavaScript object.
240240

@@ -248,9 +248,9 @@ primitive, object hash, or a full object Type. In short the model is a plain Jav
248248

249249
<img class="pull-right" style="padding-left: 3em; padding-bottom: 1em;" src="img/guide/concepts-view.png">
250250

251-
The view is what the users sees. The view begins its life as a template, it is merged with the
251+
The view is what the user sees. The view begins its life as a template, is merged with the
252252
model and finally rendered into the browser DOM. Angular takes a very different approach to
253-
rendering the view, compared to most other templating systems.
253+
rendering the view compared to most other templating systems.
254254

255255
* **Others** - Most templating systems begin as an HTML string with special templating markup.
256256
Often the template markup breaks the HTML syntax which means that the template can not be

0 commit comments

Comments
 (0)