diff --git a/packages/formatters/src/formatters.ts b/packages/formatters/src/formatters.ts index 915ec331c..65c7af555 100644 --- a/packages/formatters/src/formatters.ts +++ b/packages/formatters/src/formatters.ts @@ -56,17 +56,6 @@ export function bold(content: Content): `**${Content}**` return `**${content}**`; } -/** - * Formats the content into underscored text. - * - * @typeParam Content - This is inferred by the supplied content - * @param content - The content to wrap - * @deprecated Use {@link underline} instead. - */ -export function underscore(content: Content): `__${Content}__` { - return underline(content); -} - /** * Formats the content into underlined text. *