[docs] fix typo

Add missing closing tag for bold
This commit is contained in:
chiri 2024-10-27 01:56:13 +03:00 committed by GitHub
parent 51beb48257
commit 3dac40d5a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,7 @@ Is the same as the next example, but without usage markup
.. code-block:: python
await message.answer(
text=f"Hello, <b>{html.quote(message.from_user.full_name)}!",
text=f"Hello, <b>{html.quote(message.from_user.full_name)}</b>!",
parse_mode=ParseMode.HTML
)