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

Commit 08c57a5

Browse files
author
timeless@gmail.com
committed
spelling: template
1 parent 275dc33 commit 08c57a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11610,7 +11610,7 @@ This release also contains all bug fixes available in [1.0.2](#1.0.2).
1161011610
- allow defining route async dependencies as promises and defer route change until all promises
1161111611
are resolved
1161211612
([885fb0dd](https://github.com/angular/angular.js/commit/885fb0dd0743859a8985c23e4d0c1855a2be711e))
11613-
- rename template -> tempalteUrl and add support for inline templates
11613+
- rename template -> templateUrl and add support for inline templates
1161411614
([0a6e464a](https://github.com/angular/angular.js/commit/0a6e464a93d9a1e76a624b356054ce9ca4015f55))
1161511615
- **$compile:** simplify isolate scope bindings and introduce true two-way data-binding between
1161611616
parent scope and isolate scope

test/ng/compileSpec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11935,13 +11935,13 @@ describe('$compile', function() {
1193511935
testReplaceElementCleanup({});
1193611936
});
1193711937
it('should clean data of elements removed for directive templateUrl', function() {
11938-
testReplaceElementCleanup({asyncTmeplate: true});
11938+
testReplaceElementCleanup({asyncTemplate: true});
1193911939
});
1194011940
it('should clean data of elements transcluded into directive template', function() {
1194111941
testReplaceElementCleanup({transclude: true});
1194211942
});
1194311943
it('should clean data of elements transcluded into directive templateUrl', function() {
11944-
testReplaceElementCleanup({transclude: true, asyncTmeplate: true});
11944+
testReplaceElementCleanup({transclude: true, asyncTemplate: true});
1194511945
});
1194611946
it('should clean data of elements replaced with directive template', function() {
1194711947
testReplaceElementCleanup({replace: true});

0 commit comments

Comments
 (0)