Fix a doc typo and update projects using the lib

This commit is contained in:
Lonami Exo
2020-03-11 10:02:19 +01:00
parent 0e0052888f
commit e3d8109110
2 changed files with 9 additions and 1 deletions

View File

@@ -51,7 +51,7 @@ class CallbackQuery(EventBuilder):
# Send a message with buttons users can click
async def main():
await client.send_message(user, 'Yes or no?', buttons=[
Button.inline('Yes!', b'yes')
Button.inline('Yes!', b'yes'),
Button.inline('Nope', b'no')
])
"""