From 3dac40d5a2eb4baca2c79756d382b15203d7a147 Mon Sep 17 00:00:00 2001 From: chiri <109767616+chirizxc@users.noreply.github.com> Date: Sun, 27 Oct 2024 01:56:13 +0300 Subject: [PATCH] [docs] fix typo Add missing closing tag for bold --- docs/utils/formatting.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/utils/formatting.rst b/docs/utils/formatting.rst index 9f3a0572..6c70d23b 100644 --- a/docs/utils/formatting.rst +++ b/docs/utils/formatting.rst @@ -28,7 +28,7 @@ Is the same as the next example, but without usage markup .. code-block:: python await message.answer( - text=f"Hello, {html.quote(message.from_user.full_name)}!", + text=f"Hello, {html.quote(message.from_user.full_name)}!", parse_mode=ParseMode.HTML )