docs(core/facade/collection): Correct typo
Add correct spelling of the word "statically" Closes #4193
This commit is contained in:
parent
d6cda15879
commit
045cb90a46
|
@ -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); }
|
||||
|
|
Loading…
Reference in New Issue