Skip to content

Commit b9ac3ec

Browse files
committed
2 parents a08e5e7 + 9efc8d0 commit b9ac3ec

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

docs/getting-started/quickstart.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Since TwitchIO 3 is fully asynchronous we will be using `asqlite` as our library
2929
pip install -U git+https://github.com/Rapptz/asqlite.git
3030
3131
32-
Before running the code below, there just a couple more steps we need to take.
32+
Before running the code below, there are just a couple more steps we need to take. **You only have to do this sequence of steps once. Or if you change the scopes used.**
3333

3434
#. Create a new Twitch account. This will be the dedicated bot account.
3535
#. Enter your CLIENT_ID, CLIENT_SECRET, BOT_ID and OWNER_ID into the placeholders in the below example. See :ref:`faqs` on how to retrieve the ``BOT_ID`` and ``OWNER_ID``.
@@ -41,8 +41,6 @@ Before running the code below, there just a couple more steps we need to take.
4141
.. note::
4242
If you are unsure how to get the user IDs for BOT_ID and OWNER_ID, please check :ref:`bot-id-owner-id`
4343

44-
**You only have to do this sequence of steps once. Or if the scopes need to change.**
45-
4644
.. code:: python3
4745
4846
"""An example of connecting to a conduit and subscribing to EventSub when a User Authorizes the application.

twitchio/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3616,7 +3616,7 @@ async def multi_subscribe(
36163616
Cannot subscribe when no Conduit is associated with this Client.
36173617
"""
36183618
if not self._conduit_info.conduit:
3619-
raise MissingConduit("Unable to subscribe as a Conduit has not beed associated with %r.", self)
3619+
raise MissingConduit("Unable to subscribe as a Conduit has not been associated with %r.", self)
36203620

36213621
if wait:
36223622
return await self._multi_sub(subscriptions, stop_on_error=stop_on_error)

twitchio/ext/commands/bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ def modules(self) -> Mapping[str, types.ModuleType]:
812812
class AutoBot(Bot, AutoClient):
813813
"""The TwitchIO :class:`~twitchio.ext.commands.AutoBot` class used to easily manage Twitch Conduits and Shards.
814814
815-
This class beahves idential to :class:`~twitchio.ext.commands.Bot` with the addition of inheriting from
815+
This class behaves identically to :class:`~twitchio.ext.commands.Bot` with the addition of inheriting from
816816
:class:`~twitchio.AutoClient`. See: :class:`~twitchio.AutoClient` for more details on how this class differs from
817817
the :class:`~twitchio.ext.commands.Bot` which inherits from :class:`~twitchio.Client`.
818818
"""

0 commit comments

Comments
 (0)