From 595df296615e41b3c081ba0d66f9a6e15a26d8bf Mon Sep 17 00:00:00 2001 From: bboure Date: Thu, 18 Jan 2024 21:51:48 +0100 Subject: [PATCH] allow PR names without () --- src/utils/dynamodb.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/dynamodb.ts b/src/utils/dynamodb.ts index 759e5bf..9bd930c 100644 --- a/src/utils/dynamodb.ts +++ b/src/utils/dynamodb.ts @@ -16,7 +16,7 @@ export type DynamoDBItemCollection = * Feed a table with items * * @param {string} tableName The table name - * @param {DynamoDBItemCollection} items The items to feed the table with + * @param {DynamoDBItemCollection} items The items to feed the table with. {@link DynamoDBItemCollection} */ export const feedTable = async ( tableName: string, @@ -46,7 +46,7 @@ export const feedTable = async ( /** * Feed multiple tables with items * - * @param {Record} items A Key-Value pair of table name and items to insert + * @param {Record} items A Key-Value pair of table name and items to insert. (@link DynamoDBItemCollection) */ export const feedTables = async (items: { [tableName: string]: DynamoDBItemCollection;