From 4531c3628c57b9998dc1b65f96f3fe5b80c28345 Mon Sep 17 00:00:00 2001 From: chiri <109767616+chirizxc@users.noreply.github.com> Date: Sun, 27 Oct 2024 21:03:21 +0300 Subject: [PATCH] [docs] fix typo (#1599) --- CHANGES/1599.doc.rst | 1 + docs/utils/formatting.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CHANGES/1599.doc.rst diff --git a/CHANGES/1599.doc.rst b/CHANGES/1599.doc.rst new file mode 100644 index 00000000..500578c8 --- /dev/null +++ b/CHANGES/1599.doc.rst @@ -0,0 +1 @@ +Add missing closing tag for bold. 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 )