Skip to content

Commit

Permalink
Fix more Client docs
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Jan 31, 2025
1 parent a63407c commit e058ac2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions twitchio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@
class Client:
"""The TwitchIO Client.
The `Client` acts as an entry point to the Twitch API, EventSub and OAuth and serves as a base for chat-bots.
The ``Client`` acts as an entry point to the Twitch API, EventSub and OAuth and serves as a base for chat-bots.
:class:`twitchio.ext.commands.Bot` inherits from this class and such should be treated as a `Client` with an in-built
:class:`~twitchio.ext.commands.Bot` inherits from this class and such should be treated as a ``Client`` with an in-built
commands extension.
You don't need to :meth:`~.start` or :meth:`~.run` the `Client` to use it soley as a HTTP Wrapper,
You don't need to :meth:`~.start` or :meth:`~.run` the ``Client`` to use it soley as a HTTP Wrapper,
but you must still :meth:`~.login` with this use case.
Parameters
Expand All @@ -98,7 +98,7 @@ class Client:
An optional ``str`` to set as the redirect uri for anything relating to
Twitch OAuth via :class:`twitchio.web.StarletteAdapter` or :class:`twitchio.web.AiohttpAdapter.
This is a convenience attribute, it is preferred you
use a custom :class:`twitchio.web.StarletteAdapter` or :class:`twitchio.web.AiohttpAdapter instead.
use a custom :class:`~twitchio.web.StarletteAdapter` or :class:`~twitchio.web.AiohttpAdapter` instead.
scopes: twitchio.Scopes | None
An optional :class:`~twitchio.Scopes` object to use as defaults when using anything related to Twitch OAuth.
Expand Down

0 comments on commit e058ac2

Please sign in to comment.