Turn some enum Param comments into doc-comments

This commit is contained in:
Alexander Krotov
2020-01-11 15:27:09 +03:00
parent 775d27b6a9
commit 47b937f880

View File

@@ -96,25 +96,25 @@ pub enum Param {
/// For Jobs: space-separated list of message recipients /// For Jobs: space-separated list of message recipients
Recipients = b'R', Recipients = b'R',
// For Groups /// For Groups
Unpromoted = b'U', Unpromoted = b'U',
// For Groups and Contacts /// For Groups and Contacts
ProfileImage = b'i', ProfileImage = b'i',
// For Chats /// For Chats
Selftalk = b'K', Selftalk = b'K',
// For Chats /// For Chats
Devicetalk = b'D', Devicetalk = b'D',
// For QR /// For QR
Auth = b's', Auth = b's',
// For QR /// For QR
GroupId = b'x', GroupId = b'x',
// For QR /// For QR
GroupName = b'g', GroupName = b'g',
} }