diff --git a/packages/@aws-cdk/aws-ec2/lib/instance.ts b/packages/@aws-cdk/aws-ec2/lib/instance.ts index 52803783bdb6d..3964f18f59ce0 100644 --- a/packages/@aws-cdk/aws-ec2/lib/instance.ts +++ b/packages/@aws-cdk/aws-ec2/lib/instance.ts @@ -291,7 +291,7 @@ export class Instance extends Resource implements IInstance { if (selected.length === 1) { subnet = selected[0]; } else { - throw new Error('When specifying AZ there has to be exactly on subnet of the given type in this az'); + throw new Error('When specifying AZ there has to be exactly one subnet of the given type in this az'); } } else { subnet = subnets[0];