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

View File

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