From 045cb90a462d4fc53d5860baedbff5563eabfbae Mon Sep 17 00:00:00 2001 From: "J. Andrew Brassington" Date: Tue, 15 Sep 2015 09:38:20 -0700 Subject: [PATCH] docs(core/facade/collection): Correct typo Add correct spelling of the word "statically" Closes #4193 --- modules/angular2/src/core/facade/collection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/core/facade/collection.ts b/modules/angular2/src/core/facade/collection.ts index 9380172c98..cb75864506 100644 --- a/modules/angular2/src/core/facade/collection.ts +++ b/modules/angular2/src/core/facade/collection.ts @@ -166,7 +166,7 @@ export class StringMapWrapper { export interface Predicate { (value: T, index?: number, array?: T[]): boolean; } export class ListWrapper { - // JS has no way to express a staticly fixed size list, but dart does so we + // JS has no way to express a statically fixed size list, but dart does so we // keep both methods. static createFixedSize(size: number): any[] { return new Array(size); } static createGrowableSize(size: number): any[] { return new Array(size); }