From 18de0ceeb1a6058d48a975489a25b805d742622b Mon Sep 17 00:00:00 2001 From: Jimmy Gong Date: Wed, 9 Sep 2015 13:42:35 -0700 Subject: [PATCH] Fixes typo 'partialy' -> 'partially' Closes #4102 --- modules/angular2/src/core/compiler/query_list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/core/compiler/query_list.ts b/modules/angular2/src/core/compiler/query_list.ts index 9ac86dbd8a..5915e86d05 100644 --- a/modules/angular2/src/core/compiler/query_list.ts +++ b/modules/angular2/src/core/compiler/query_list.ts @@ -34,7 +34,7 @@ import {ListWrapper, MapWrapper} from 'angular2/src/core/facade/collection'; * * A possible solution would be for a `` to inject `` component and then register itself * with `` component's on `hydrate` and deregister on `dehydrate` event. While a reasonable - * approach, this would only work partialy since `*ng-for` could rearrange the list of `` + * approach, this would only work partially since `*ng-for` could rearrange the list of `` * components which would not be reported to `` component and thus the list of `` * components would be out of sync with respect to the list of `` elements. *