Skip to content

Commit 85c4a91

Browse files
authored
Fix typos in FAQ section (#4498)
1 parent 3f589b2 commit 85c4a91

File tree

1 file changed

+2
-2
lines changed
  • readthedocs/quick-references

1 file changed

+2
-2
lines changed

readthedocs/quick-references/faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To enable logging, at the following code to the top of your main file:
2020
.. code-block:: python
2121
2222
import logging
23-
logging.basicConfig(format='[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s',
23+
logging.basicConfig(format='[%(levelname) %(asctime)s] %(name)s: %(message)s',
2424
level=logging.WARNING)
2525
2626
You can change the logging level to be something different, from less to more information:
@@ -272,7 +272,7 @@ connects to Telegram, both agree on the layer to use. If the layers don't
272272
match, Telegram may send certain objects which Telethon no longer understands.
273273

274274
When this message is reported as a "bug", the most common patterns seem to be
275-
that he Telethon session is being used or has been used from somewhere else.
275+
that the Telethon session is being used or has been used from somewhere else.
276276
Make sure that you created the session from Telethon, and are not using the
277277
same session anywhere else. If you need to use the same account from
278278
multiple places, login and use a different session for each place you need.

0 commit comments

Comments
 (0)