docs(core): update directives documentation (#23255)

fix(release): wrong input names in bank-account component

Directive example has errors #22382

PR Close #23255
This commit is contained in:
paulmojicatech 2018-04-08 23:12:42 -04:00 committed by Igor Minar
parent f4c56f4931
commit 60e8392722
1 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ export interface Directive {
* @Component({
* selector: 'app',
* template: `
* <bank-account bank-name="RBC" account-id="4747"></bank-account>
* <bank-account bankName="RBC" account-id="4747"></bank-account>
* `
* })
* class App {}
@ -857,7 +857,7 @@ export interface InputDecorator {
* @Component({
* selector: 'app',
* template: `
* <bank-account bank-name="RBC" account-id="4747"></bank-account>
* <bank-account bankName="RBC" account-id="4747"></bank-account>
* `
* })
*