From 553b17c646c3526617e5b5d3135fff97f126bc52 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Sun, 27 Oct 2024 15:38:35 -0300 Subject: [PATCH] refactor: tsdoc format --- src/utils/search.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/utils/search.ts b/src/utils/search.ts index c2d69bdb..96ed9649 100644 --- a/src/utils/search.ts +++ b/src/utils/search.ts @@ -34,8 +34,10 @@ export async function getPubkeysBySearch( return new Set(Array.from(followingPubkeys.union(pubkeys))); } -/** Get kind 1 ids whose content matches 'q' - * It supports NIP-50 extensions */ +/** + * Get kind 1 ids whose content matches `q`. + * It supports NIP-50 extensions. + */ export async function getIdsBySearch( kysely: Kysely, opts: { q: string; limit: number; offset: number },