There was an error while loading. Please reload this page.
1 parent d6cda15 commit 045cb90Copy full SHA for 045cb90
modules/angular2/src/core/facade/collection.ts
@@ -166,7 +166,7 @@ export class StringMapWrapper {
166
export interface Predicate<T> { (value: T, index?: number, array?: T[]): boolean; }
167
168
export class ListWrapper {
169
- // 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
170
// keep both methods.
171
static createFixedSize(size: number): any[] { return new Array(size); }
172
static createGrowableSize(size: number): any[] { return new Array(size); }
0 commit comments