mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-15 11:25:54 +00:00
Minor typos fix
This commit is contained in:
parent
f9c44bb2d7
commit
11fc718c40
1 changed files with 6 additions and 5 deletions
|
|
@ -36,7 +36,8 @@ class User(base.TelegramObject):
|
||||||
@property
|
@property
|
||||||
def mention(self):
|
def mention(self):
|
||||||
"""
|
"""
|
||||||
You can get mention to user (If user have username, otherwise return full name)
|
You can get user's username to mention him
|
||||||
|
Full name will be returned if user has no username
|
||||||
|
|
||||||
:return: str
|
:return: str
|
||||||
"""
|
"""
|
||||||
|
|
@ -47,7 +48,7 @@ class User(base.TelegramObject):
|
||||||
@property
|
@property
|
||||||
def locale(self) -> 'babel.core.Locale' or None:
|
def locale(self) -> 'babel.core.Locale' or None:
|
||||||
"""
|
"""
|
||||||
This property require `Babel <https://pypi.python.org/pypi/Babel>`_ module
|
This property requires `Babel <https://pypi.python.org/pypi/Babel>`_ module
|
||||||
|
|
||||||
:return: :class:`babel.core.Locale`
|
:return: :class:`babel.core.Locale`
|
||||||
:raise: ImportError: when babel is not installed.
|
:raise: ImportError: when babel is not installed.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue