diff --git a/ember/ember.d.ts b/ember/ember.d.ts index 691178d79..94a3d1cbb 100644 --- a/ember/ember.d.ts +++ b/ember/ember.d.ts @@ -1418,9 +1418,9 @@ declare module Ember { apply(obj: any): any; /** Creates an instance of the class. - @param args A hash containing values with which to initialize the newly instantiated object. + @param arguments A hash containing values with which to initialize the newly instantiated object. **/ - static create(...args: []): T; + static create(...arguments: []): T; detect(obj: any): boolean; reopen(args?: {}): T; }