Skip to content

Commit 0d6df0b

Browse files
committed
Fix documentation
1 parent eb37d3c commit 0d6df0b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/RxTelegram.Bot/Interface/BaseTypes/InputPaidMedia/BaseInputPaidMediaPhoto.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ public class BaseInputPaidMediaPhoto: BaseInputPaidMedia
1414

1515
/// <summary>
1616
/// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended),
17-
/// pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one
18-
/// using multipart/form-data under <file_attach_name> name.
17+
/// pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://{file_attach_name}” to upload a new one
18+
/// using multipart/form-data under {file_attach_name} name.
1919
/// </summary>
2020
public string Media { get; set; }
2121
}

src/RxTelegram.Bot/Interface/BaseTypes/InputPaidMedia/BaseInputPaidMediaVideo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ public class BaseInputPaidMediaVideo : BaseInputPaidMedia
1515

1616
/// <summary>
1717
/// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to
18-
/// get a file from the Internet, or pass “attach://< file_attach_name >” to upload a new one using multipart/form-data
19-
/// under </file_attach_name > name.
18+
/// get a file from the Internet, or pass “attach://{file_attach_name}” to upload a new one using multipart/form-data
19+
/// under {file_attach_name} name.
2020
/// </summary>
2121
public string Media { get; set; }
2222

0 commit comments

Comments
 (0)