From b740c2862d16a566c52ccfaa01b3fb067afb1dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Hedr=C3=A9n?= Date: Mon, 26 May 2014 22:54:52 +0200 Subject: [PATCH] Tabs to spaces --- flight/flight.d.ts | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/flight/flight.d.ts b/flight/flight.d.ts index 4936c0baf..328ada551 100644 --- a/flight/flight.d.ts +++ b/flight/flight.d.ts @@ -9,26 +9,25 @@ declare module Flight { export interface Base { - /** - * Most Components and Mixins need to define attributes. In Flight, - * default values are assigned by passing an object to the attributes - * function. - * - * NOTE: this.attributes replaces the now deprecated this.defaultAttrs. - * However, for backwards compatibility, if you are using this.defaultAttrs - * then all the old attribute behavior remains in place. - */ - attributes(obj: Object): void; - - + /** + * Most Components and Mixins need to define attributes. In Flight, + * default values are assigned by passing an object to the attributes + * function. + * + * NOTE: this.attributes replaces the now deprecated this.defaultAttrs. + * However, for backwards compatibility, if you are using this.defaultAttrs + * then all the old attribute behavior remains in place. + */ + attributes(obj: Object): void; + /** * Most Components and Mixins need to define attributes. In Flight, * default values are assigned by passing an object to the defaultAttrs * function. - * - * NOTE: this.attributes replaces the now deprecated this.defaultAttrs. - * However, for backwards compatibility, if you are using this.defaultAttrs - * then all the old attribute behavior remains in place. + * + * NOTE: this.attributes replaces the now deprecated this.defaultAttrs. + * However, for backwards compatibility, if you are using this.defaultAttrs + * then all the old attribute behavior remains in place. */ defaultAttrs(obj: Object): void;