Skip to content

Commit ea87848

Browse files
committed
style(access-point): typo error message
1 parent 9317203 commit ea87848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/aws-s3objectlambda-alpha/lib/access-point.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class AccessPoint extends AccessPointBase {
173173
public static fromAccessPointAttributes(scope: Construct, id: string, attrs: AccessPointAttributes): IAccessPoint {
174174
const arn = core.Arn.split(attrs.accessPointArn, core.ArnFormat.SLASH_RESOURCE_NAME);
175175
if (!arn.resourceName) {
176-
throw new Error('Unable to parse acess point name');
176+
throw new Error('Unable to parse access point name');
177177
}
178178
const name = arn.resourceName;
179179
class Import extends AccessPointBase {

0 commit comments

Comments
 (0)