Skip to content

Commit 045cb90

Browse files
committed
docs(core/facade/collection): Correct typo
Add correct spelling of the word "statically" Closes angular#4193
1 parent d6cda15 commit 045cb90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/angular2/src/core/facade/collection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export class StringMapWrapper {
166166
export interface Predicate<T> { (value: T, index?: number, array?: T[]): boolean; }
167167

168168
export class ListWrapper {
169-
// JS has no way to express a staticly fixed size list, but dart does so we
169+
// JS has no way to express a statically fixed size list, but dart does so we
170170
// keep both methods.
171171
static createFixedSize(size: number): any[] { return new Array(size); }
172172
static createGrowableSize(size: number): any[] { return new Array(size); }

0 commit comments

Comments
 (0)