diff --git a/packages/@aws-cdk/aws-scheduler-targets-alpha/lib/util.ts b/packages/@aws-cdk/aws-scheduler-targets-alpha/lib/util.ts index 3ea723c29ef2c..f21cea645a31a 100644 --- a/packages/@aws-cdk/aws-scheduler-targets-alpha/lib/util.ts +++ b/packages/@aws-cdk/aws-scheduler-targets-alpha/lib/util.ts @@ -4,7 +4,7 @@ import { Token, TokenComparison } from 'aws-cdk-lib'; * Whether two string probably contain the same environment dimension (region or account) * * Used to compare either accounts or regions, and also returns true if both - * are unresolved (in which case both are expted to be "current region" or "current account"). + * are unresolved (in which case both are expected to be "current region" or "current account"). */ export function sameEnvDimension(dim1: string, dim2: string) { return [TokenComparison.SAME, TokenComparison.BOTH_UNRESOLVED].includes(Token.compareStrings(dim1, dim2));