Skip to content

Commit

Permalink
chore: correct coersion to coercion (#2160)
Browse files Browse the repository at this point in the history
  • Loading branch information
EladBezalel authored and jelbourn committed Dec 14, 2016
1 parent e84bced commit bb1f006
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/lib/checkbox/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
} from '@angular/core';
import {CommonModule} from '@angular/common';
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from '@angular/forms';
import {coerceBooleanProperty} from '../core/coersion/boolean-property';
import {coerceBooleanProperty} from '../core/coercion/boolean-property';
import {MdRippleModule, DefaultStyleCompatibilityModeModule} from '../core';
import {ViewportRuler} from '../core/overlay/position/viewport-ruler';

Expand Down
2 changes: 1 addition & 1 deletion src/lib/core/a11y/focus-trap.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Component, ViewEncapsulation, ViewChild, ElementRef, Input, NgZone} from '@angular/core';
import {InteractivityChecker} from './interactivity-checker';
import {coerceBooleanProperty} from '../coersion/boolean-property';
import {coerceBooleanProperty} from '../coercion/boolean-property';


/**
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/lib/core/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export * from './compatibility/default-mode';
export * from './animation/animation';

// Coersion
export {coerceBooleanProperty} from './coersion/boolean-property';
export {coerceNumberProperty} from './coersion/number-property';
export {coerceBooleanProperty} from './coercion/boolean-property';
export {coerceNumberProperty} from './coercion/number-property';

// Compatibility
export {DefaultStyleCompatibilityModeModule} from './compatibility/default-mode';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/radio/radio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
MdUniqueSelectionDispatcher,
DefaultStyleCompatibilityModeModule,
} from '../core';
import {coerceBooleanProperty} from '../core/coersion/boolean-property';
import {coerceBooleanProperty} from '../core/coercion/boolean-property';
import {ViewportRuler} from '../core/overlay/position/viewport-ruler';


Expand Down
2 changes: 1 addition & 1 deletion src/lib/select/option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
ViewEncapsulation
} from '@angular/core';
import {ENTER, SPACE} from '../core/keyboard/keycodes';
import {coerceBooleanProperty} from '../core/coersion/boolean-property';
import {coerceBooleanProperty} from '../core/coercion/boolean-property';

/**
* Option IDs need to be unique across components, so this counter exists outside of
Expand Down
2 changes: 1 addition & 1 deletion src/lib/select/select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {Dir} from '../core/rtl/dir';
import {Subscription} from 'rxjs/Subscription';
import {transformPlaceholder, transformPanel, fadeInContent} from './select-animations';
import {ControlValueAccessor, NgControl} from '@angular/forms';
import {coerceBooleanProperty} from '../core/coersion/boolean-property';
import {coerceBooleanProperty} from '../core/coercion/boolean-property';
import {ConnectedOverlayDirective} from '../core/overlay/overlay-directives';
import {ViewportRuler} from '../core/overlay/position/viewport-ruler';

Expand Down
2 changes: 1 addition & 1 deletion src/lib/tabs/tab-label-wrapper.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Directive, ElementRef, Renderer, Input} from '@angular/core';
import {coerceBooleanProperty} from '../core/coersion/boolean-property';
import {coerceBooleanProperty} from '../core/coercion/boolean-property';


/** Used in the `md-tab-group` view to display tab labels */
Expand Down
2 changes: 1 addition & 1 deletion src/lib/tabs/tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
ViewContainerRef, Input, TemplateRef, ViewChild, OnInit, ContentChild,
Component
} from '@angular/core';
import {coerceBooleanProperty} from '../core/coersion/boolean-property';
import {coerceBooleanProperty} from '../core/coercion/boolean-property';

import {MdTabLabel} from './tab-label';

Expand Down

0 comments on commit bb1f006

Please sign in to comment.