Skip to content

Commit c2c857b

Browse files
committed
Fix wrong usages of italic delimiters
1 parent a3464e0 commit c2c857b

17 files changed

+27
-27
lines changed

pyrogram/methods/messages/copy_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async def copy_message(
7676
Pass None to completely disable style parsing.
7777
7878
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
79-
List of special entities that appear in the new caption, which can be specified instead of __parse_mode__.
79+
List of special entities that appear in the new caption, which can be specified instead of *parse_mode*.
8080
8181
disable_notification (``bool``, *optional*):
8282
Sends the message silently.

pyrogram/methods/messages/edit_message_caption.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async def edit_message_caption(
5454
Pass None to completely disable style parsing.
5555
5656
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
57-
List of special entities that appear in the caption, which can be specified instead of __parse_mode__.
57+
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.
5858
5959
reply_markup (:obj:`~pyrogram.types.InlineKeyboardMarkup`, *optional*):
6060
An InlineKeyboardMarkup object.

pyrogram/methods/messages/edit_message_text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async def edit_message_text(
5757
Pass None to completely disable style parsing.
5858
5959
entities (List of :obj:`~pyrogram.types.MessageEntity`):
60-
List of special entities that appear in message text, which can be specified instead of __parse_mode__.
60+
List of special entities that appear in message text, which can be specified instead of *parse_mode*.
6161
6262
disable_web_page_preview (``bool``, *optional*):
6363
Disables link previews for links in this message.

pyrogram/methods/messages/send_animation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async def send_animation(
8585
Pass None to completely disable style parsing.
8686
8787
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
88-
List of special entities that appear in the caption, which can be specified instead of __parse_mode__.
88+
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.
8989
9090
duration (``int``, *optional*):
9191
Duration of sent animation in seconds.

pyrogram/methods/messages/send_audio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async def send_audio(
8282
Pass None to completely disable style parsing.
8383
8484
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
85-
List of special entities that appear in the caption, which can be specified instead of __parse_mode__.
85+
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.
8686
8787
duration (``int``, *optional*):
8888
Duration of the audio in seconds.

pyrogram/methods/messages/send_cached_media.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ async def send_cached_media(
6969
Pass None to completely disable style parsing.
7070
7171
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
72-
List of special entities that appear in the caption, which can be specified instead of __parse_mode__.
72+
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.
7373
7474
disable_notification (``bool``, *optional*):
7575
Sends the message silently.

pyrogram/methods/messages/send_document.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async def send_document(
8484
Pass None to completely disable style parsing.
8585
8686
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
87-
List of special entities that appear in the caption, which can be specified instead of __parse_mode__.
87+
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.
8888
8989
file_name (``str``, *optional*):
9090
File name of the document sent.

pyrogram/methods/messages/send_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async def send_message(
6060
Pass None to completely disable style parsing.
6161
6262
entities (List of :obj:`~pyrogram.types.MessageEntity`):
63-
List of special entities that appear in message text, which can be specified instead of __parse_mode__.
63+
List of special entities that appear in message text, which can be specified instead of *parse_mode*.
6464
6565
disable_web_page_preview (``bool``, *optional*):
6666
Disables link previews for links in this message.

pyrogram/methods/messages/send_photo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async def send_photo(
7676
Pass None to completely disable style parsing.
7777
7878
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
79-
List of special entities that appear in the caption, which can be specified instead of __parse_mode__.
79+
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.
8080
8181
ttl_seconds (``int``, *optional*):
8282
Self-Destruct Timer.

pyrogram/methods/messages/send_video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async def send_video(
8282
Pass None to completely disable style parsing.
8383
8484
caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
85-
List of special entities that appear in the caption, which can be specified instead of __parse_mode__.
85+
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.
8686
8787
ttl_seconds (``int``, *optional*):
8888
Self-Destruct Timer.

0 commit comments

Comments
 (0)