docs(core): typo adding missing comma (#49088)

PR Close #49088
This commit is contained in:
Ilyass 2023-02-15 20:06:32 +01:00 committed by Alex Rickabaugh
parent 06605cc760
commit 6b8636fff8

View file

@ -195,7 +195,7 @@ export interface Directive {
* ```typescript
* @Component({
* selector: 'child-dir',
* outputs: [ 'bankNameChange' ]
* outputs: [ 'bankNameChange' ],
* template: `<input (input)="bankNameChange.emit($event.target.value)" />`
* })
* class ChildDir {