From 6ae5fb5edb7e499cd781d2d9d025a4b253da59d4 Mon Sep 17 00:00:00 2001 From: Aaron Date: Sun, 8 Feb 2026 08:03:46 -0600 Subject: [PATCH] docs: Fix JSDoc --- packages/wxt/src/core/utils/paths.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/wxt/src/core/utils/paths.ts b/packages/wxt/src/core/utils/paths.ts index 36a08d58..17e8e975 100644 --- a/packages/wxt/src/core/utils/paths.ts +++ b/packages/wxt/src/core/utils/paths.ts @@ -2,8 +2,8 @@ import systemPath from 'node:path'; import normalize from 'normalize-path'; /** - * Converts system paths to normalized bundler path.\ - * On Windows and Unix, this returns paths with `/` instead of `\`. + * Converts system paths to normalized bundler path. + * On Windows, this returns paths with `/` instead of `\`. */ export function normalizePath(path: string): string { return normalize(path);