mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 17:13:31 +01:00
fix(util): Remove extra slash (#9347)
This commit is contained in:
@@ -23,7 +23,7 @@ export function hasMethods(item: ApiItemContainerMixin) {
|
||||
}
|
||||
|
||||
export function resolveItemURI(item: ApiItem): string {
|
||||
return `/${item.displayName}:${item.kind}`;
|
||||
return `${item.displayName}:${item.kind}`;
|
||||
}
|
||||
|
||||
function memberPredicate(item: ApiItem): item is ApiMethod | ApiMethodSignature | ApiProperty | ApiPropertySignature {
|
||||
|
||||
Reference in New Issue
Block a user