Skip to content

Commit

Permalink
refactor(common): fix emiting typos (#43221)
Browse files Browse the repository at this point in the history
fix some of the aio examples which log strings containing "emiting" instead of "emitting"

PR Close #43221
  • Loading branch information
dario-piotrowicz authored and alxhub committed Aug 23, 2021
1 parent fc7f921 commit d7b6416
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -21,12 +21,12 @@ export class AliasingComponent {


saveIt() {
console.warn('Child says: emiting outputEvent1 with', this.input1);
console.warn('Child says: emitting outputEvent1 with', this.input1);
this.outputEvent1.emit(this.input1);
}

wishForIt() {
console.warn('Child says: emiting outputEvent2', this.input2);
console.warn('Child says: emitting outputEvent2', this.input2);
this.outputEvent2.emit(this.input2);
}

Expand Down
Expand Up @@ -20,7 +20,7 @@ export class InTheMetadataComponent {
clearanceItem = '';

buyIt() {
console.warn('Child says: emiting buyEvent with', this.clearanceItem);
console.warn('Child says: emitting buyEvent with', this.clearanceItem);
this.buyEvent.emit(this.clearanceItem);
}

Expand Down
Expand Up @@ -12,7 +12,7 @@ export class InputOutputComponent {
lineThrough = '';

delete() {
console.warn('Child says: emiting item deleteRequest with', this.item);
console.warn('Child says: emitting item deleteRequest with', this.item);
this.deleteRequest.emit(this.item);
this.lineThrough = this.lineThrough ? '' : 'line-through';
}
Expand Down

0 comments on commit d7b6416

Please sign in to comment.