From 6cad070a728fbfa38b9332d074f5f0c82ea5a7e0 Mon Sep 17 00:00:00 2001 From: Niek te Grootenhuis Date: Mon, 22 Aug 2022 10:23:34 +0200 Subject: [PATCH] chore: remove options reference from jsdoc Signed-off-by: Niek te Grootenhuis --- .../src/service/fact/createFactRetriever.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts b/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts index aa4d9aff03..aaba29ecb1 100644 --- a/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts +++ b/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts @@ -41,10 +41,10 @@ export type FactRetrieverRegistrationOptions = { * @public * * A helper function to construct fact retriever registrations. - * @param options.cadence - Cron expression to indicate when the fact retriever should be triggered - * @param options.factRetriever - Implementation of fact retriever consisting of at least id, version, schema and handler - * @param options.lifecycle - Optional lifecycle definition indicating the cleanup logic of facts when this retriever is run - * @param options.timeout - Optional duration to determine how long the fact retriever should be allowed to run, defaults to 5 minutes + * @param cadence - Cron expression to indicate when the fact retriever should be triggered + * @param factRetriever - Implementation of fact retriever consisting of at least id, version, schema and handler + * @param lifecycle - Optional lifecycle definition indicating the cleanup logic of facts when this retriever is run + * @param timeout - Optional duration to determine how long the fact retriever should be allowed to run, defaults to 5 minutes * * * @remarks