Skip to content

Commit

Permalink
fix(core): fix docs for CfnInclude (#4703)
Browse files Browse the repository at this point in the history
Change "template" to "props" in the ctor properties. 

This fixes #3424
  • Loading branch information
Elad Ben-Israel authored and mergify[bot] committed Oct 27, 2019
1 parent 8e72720 commit ba38b76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/core/lib/cfn-include.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class CfnInclude extends CfnElement {
* stack.
* @param scope The parent construct of this template
* @param id The ID of this construct
* @param template The template to adopt.
* @param props Initialization properties.
*/
constructor(scope: Construct, id: string, props: CfnIncludeProps) {
super(scope, id);
Expand Down

0 comments on commit ba38b76

Please sign in to comment.