[docs] fix typo (#1599)

This commit is contained in:
chiri 2024-10-27 21:03:21 +03:00 committed by GitHub
parent 51beb48257
commit 4531c3628c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

1
CHANGES/1599.doc.rst Normal file
View file

@ -0,0 +1 @@
Add missing closing tag for bold.

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
)