Skip to content

Commit

Permalink
docs: change count to this.count in example (#56080)
Browse files Browse the repository at this point in the history
PR Close #56080
  • Loading branch information
bahalbach authored and pkozlowski-opensource committed May 27, 2024
1 parent 857f867 commit df267c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ChildComponent {

onClick() {
this.count++;
this.incrementCountEvent.emit(count);
this.incrementCountEvent.emit(this.count);
}

}
Expand Down

0 comments on commit df267c5

Please sign in to comment.