From e0a55e8cd93c00c896ab0fc37395ee0ca6bb0451 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 28 Jun 2023 03:38:45 +0100 Subject: [PATCH] reword --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5803687..d3c3e00 100644 --- a/README.md +++ b/README.md @@ -70,13 +70,13 @@ The following keyword arguments may be passed: ### Attributes -For event messages you may inspect the available attributes using `attrs()`. +For event data you may inspect the available attributes using `attrs()`. example: ```python -def on_twitch_event(event, msg): - print(f"{event}: {msg.attrs()}") +def on_twitch_event(event, data): + print(f"{event}: {data.attrs()}") ``` ### Errors