Skip to content

Commit bf886da

Browse files
committed
docs(s3tables): fix "priveleges" to "privileges" in comments
Fix spelling of "privileges" in source comments.
1 parent 012cf32 commit bf886da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/@aws-cdk/aws-s3tables-alpha/lib/permissions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Table Bucket
2-
// Read priveleges
2+
// Read privileges
33
export const TABLE_BUCKET_READ_ACCESS = [
44
's3tables:Get*',
55
's3tables:ListNamespaces',
66
's3tables:ListTables',
77
];
88

9-
// Write priveleges
9+
// Write privileges
1010
export const TABLE_BUCKET_WRITE_ACCESS = [
1111
's3tables:PutTableData',
1212
's3tables:UpdateTableMetadataLocation',
@@ -23,11 +23,11 @@ export const TABLE_BUCKET_READ_WRITE_ACCESS = [...new Set([
2323
])];
2424

2525
// Table
26-
// Read priveleges
26+
// Read privileges
2727
export const TABLE_READ_ACCESS = [
2828
's3tables:Get*',
2929
];
30-
// Write priveleges
30+
// Write privileges
3131
export const TABLE_WRITE_ACCESS = [
3232
's3tables:PutTableData',
3333
's3tables:UpdateTableMetadataLocation',

0 commit comments

Comments
 (0)