From 2931c399f69ddafb62c48807c622fb6f21107eb3 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 15 Aug 2023 16:42:14 +0200 Subject: [PATCH] Update plugins/search-backend-module-techdocs/config.d.ts Signed-off-by: Patrik Oldsberg --- plugins/search-backend-module-techdocs/config.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/search-backend-module-techdocs/config.d.ts b/plugins/search-backend-module-techdocs/config.d.ts index 05e4d5d6b8..630bfc3692 100644 --- a/plugins/search-backend-module-techdocs/config.d.ts +++ b/plugins/search-backend-module-techdocs/config.d.ts @@ -31,7 +31,7 @@ export interface Config { * A templating string with placeholders, to form the final location of * the entity. * - * @defaultValue '/docs/:namespace/:kind/:name/:path' + * Defaults to `'/docs/:namespace/:kind/:name/:path'`. */ locationTemplate?: string; /** @@ -40,11 +40,11 @@ export interface Config { * number of entities fetched at a time from the catalog, as well as how * many things are being processed concurrently. * - * @defaultValue 10 + * Defaults to `10`. */ parallelismLimit?: number; /** - * @defaultValue false + * Defaults to `false`. */ legacyPathCasing?: boolean; };