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

Commit 17209d5

Browse files
xrdbtford
authored andcommitted
fix(docs): Spelling errors
1 parent 6f9a572 commit 17209d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/directive.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Compilation of HTML happens in three phases:
7272

7373
1. First the HTML is parsed into DOM using the standard browser API. This is important to
7474
realize because the templates must be parsable HTML. This is in contrast to most templating
75-
systems that operate on strings, rather then on DOM elements.
75+
systems that operate on strings, rather than on DOM elements.
7676

7777
2. The compilation of the DOM is performed by the call to {@link api/ng.$compile
7878
$compile()} method. The method traverses the DOM and matches the directives. If a match is found
@@ -146,7 +146,7 @@ instance of an `li` is performed.
146146
{@link api/ng.directive:ngRepeat ngRepeat} works by preventing the
147147
compilation process form descending into `li` element. Instead the {@link
148148
api/ng.directive:ngRepeat ngRepeat} directive compiles `li`
149-
seperatly. The result of of the `li` element compilation is a linking function which contains all
149+
separately. The result of of the `li` element compilation is a linking function which contains all
150150
of the directives contained in the `li` element ready to be attached to a specific clone of `li`
151151
element. At runtime the {@link api/ng.directive:ngRepeat ngRepeat}
152152
watches the expression and as items are added to the array it clones the `li` element, creates a

0 commit comments

Comments
 (0)