From fdb72eaebd87d23596d86b3d516d06c4c2123c11 Mon Sep 17 00:00:00 2001 From: Marcus Reinhardt Date: Wed, 22 Jan 2025 22:09:22 +0100 Subject: [PATCH] fix docs issue --- src/lib/navigation.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/navigation.ts b/src/lib/navigation.ts index 8880aea..79da3ed 100644 --- a/src/lib/navigation.ts +++ b/src/lib/navigation.ts @@ -15,7 +15,6 @@ export interface TreeItem { * Checks if an entry is hidden (starts with an underscore) * * @param entry {EntryType} the entry to check for visibility - * @returns {boolean} */ export function isHidden(entry: EntryType) { return entry.getBaseName().startsWith("_")