From af4018c25f8f2b16f90424890fc91d8693d12397 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Mon, 9 Dec 2024 00:02:34 +0000 Subject: [PATCH] refactor!: Remove underscore (#10648) BREAKING CHANGE: Removed the `underscore()` formatter. Use `underline()` instead. --- packages/formatters/src/formatters.ts | 11 ----------- 1 file changed, 11 deletions(-) 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. *