docs(core/facade/collection): Correct typo

Add correct spelling of the word "statically"
Closes #4193
This commit is contained in:
J. Andrew Brassington 2015-09-15 09:38:20 -07:00
parent d6cda15879
commit 045cb90a46
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ export class StringMapWrapper {
export interface Predicate<T> { (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); }