diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8b89a5e7f..09a0da318 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,5 +1,5 @@ # Learn how to add code owners here: -# https://help.github.com/en/articles/about-code-owners +# https://help.github.com/articles/about-code-owners * @iCrawl diff --git a/packages/builders/src/components/selectMenu/StringSelectMenu.ts b/packages/builders/src/components/selectMenu/StringSelectMenu.ts index 9c6542387..711bf6917 100644 --- a/packages/builders/src/components/selectMenu/StringSelectMenu.ts +++ b/packages/builders/src/components/selectMenu/StringSelectMenu.ts @@ -83,7 +83,7 @@ export class StringSelectMenuBuilder extends BaseSelectMenuBuilder { for (const [index, file] of request.files.entries()) { const fileKey = file.key ?? `files[${index}]`; - // https://developer.mozilla.org/en-US/docs/Web/API/FormData/append#parameters + // https://developer.mozilla.org/docs/Web/API/FormData/append#parameters // FormData.append only accepts a string or Blob. - // https://developer.mozilla.org/en-US/docs/Web/API/Blob/Blob#parameters + // https://developer.mozilla.org/docs/Web/API/Blob/Blob#parameters // The Blob constructor accepts TypedArray/ArrayBuffer, strings, and Blobs. if (isBufferLike(file.data)) { // Try to infer the content type from the buffer if one isn't passed