mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-17 17:48:06 +00:00
🤖 Merge PR #61437 chore(fix): correct padding length by @MrGriefs
This commit is contained in:
@@ -67,7 +67,7 @@ function getEntry(pkg, maxPathLen) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const path = `${pkg.subDirectoryPath}/`.padEnd(maxPathLen);
|
||||
const path = `${pkg.subDirectoryPath}/`.padEnd(maxPathLen + 1);
|
||||
return `/types/${path} ${users.map(u => `@${u}`).join(' ')}`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user