From f5152aad49c69ff7bfd45e0d7f32c1ee6d21bba5 Mon Sep 17 00:00:00 2001 From: Federico Zambelli Date: Thu, 2 May 2024 17:38:32 +0200 Subject: [PATCH] chore: fix docstring --- src/application-cost-monitoring.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/application-cost-monitoring.ts b/src/application-cost-monitoring.ts index 2fbc0a5..4a5f7eb 100644 --- a/src/application-cost-monitoring.ts +++ b/src/application-cost-monitoring.ts @@ -47,7 +47,6 @@ export class ApplicationCostMonitoring extends IBudgetStrategy { * @example * Tracking budget for an application called `my-application` * - * ```ts * const app = new cdk.App(); * const firstStack = new FirstStack(app, 'FirstStack', {}); * const secondStack = new SecondStack(app, 'SecondStack', {}); @@ -59,7 +58,6 @@ export class ApplicationCostMonitoring extends IBudgetStrategy { * }); * * budgetStratgy.monitor(); - * ``` */ constructor(stack: Stack, props: ApplicationCostMonitoringProps) { super(stack, props);