@@ -380,7 +380,7 @@ export function isRelative(pathLike: string | Buffer | URL): boolean {
380380 * Detection rules:
381381 * - Must start with `/` followed by a single ASCII letter (a-z, A-Z)
382382 * - The letter must be followed by `/` or be at the end of the string
383- * - Examples: `/c/Users/name `, `/d/projects`, `/c`
383+ * - Examples: `/c/tools/bin `, `/d/projects`, `/c`
384384 * - Non-matches: `/tmp`, `/usr/local`, `C:/Windows`
385385 *
386386 * @param {string | Buffer | URL } pathLike - The path to check
@@ -389,7 +389,7 @@ export function isRelative(pathLike: string | Buffer | URL): boolean {
389389 * @example
390390 * ```typescript
391391 * // MSYS drive letter paths
392- * isUnixPath('/c/Users/name ') // true
392+ * isUnixPath('/c/tools/bin ') // true
393393 * isUnixPath('/d/projects/app') // true
394394 * isUnixPath('/c') // true
395395 * isUnixPath('/C/Windows') // true
@@ -492,7 +492,7 @@ export function fromUnixPath(pathLike: string | Buffer | URL): string {
492492 *
493493 * // MSYS drive letters (Windows only)
494494 * normalizePath('/c/projects/app') // 'C:/projects/app' (on Windows)
495- * normalizePath('/d/Users/name ') // 'D:/Users/name ' (on Windows)
495+ * normalizePath('/d/tools/bin ') // 'D:/tools/bin ' (on Windows)
496496 *
497497 * // UNC paths
498498 * normalizePath('\\\\server\\share\\file') // '//server/share/file'
0 commit comments