Skip to content

Commit fea8bc7

Browse files
committed
fixed formatting
1 parent 0ef8845 commit fea8bc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javav2/example_code/dynamodb/src/main/java/com/example/dynamodb/scenario/ScenarioPartiQ.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public static void createTable(DynamoDbClient ddb, String tableName) {
125125

126126
CreateTableRequest request = CreateTableRequest.builder()
127127
.keySchema(tableKey)
128-
.billingMode(BillingMode.PAY_PER_REQUEST) // DynamoDB automatically scales based on traffic.
128+
.billingMode(BillingMode.PAY_PER_REQUEST) // Scales based on traffic.
129129
.attributeDefinitions(attributeDefinitions)
130130
.tableName(tableName)
131131
.build();

0 commit comments

Comments
 (0)