Skip to content

Commit a2639c2

Browse files
committed
Correct typo in examples
1 parent f3d84e8 commit a2639c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/getting-started/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Before running the code below, there just a couple more steps we need to take.
8585
# Make sure to call super() as it will add the tokens interally and return us some data...
8686
resp: twitchio.authentication.ValidateTokenPayload = await super().add_token(token, refresh)
8787
88-
# Store our tokens in a simle SQLite Database when they are authorized...
88+
# Store our tokens in a simple SQLite Database when they are authorized...
8989
query = """
9090
INSERT INTO tokens (user_id, token, refresh)
9191
VALUES (?, ?, ?)

examples/alpha_example/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def add_token(self, token: str, refresh: str) -> twitchio.authentication.V
6363
# Make sure to call super() as it will add the tokens interally and return us some data...
6464
resp: twitchio.authentication.ValidateTokenPayload = await super().add_token(token, refresh)
6565

66-
# Store our tokens in a simle SQLite Database when they are authorized...
66+
# Store our tokens in a simple SQLite Database when they are authorized...
6767
query = """
6868
INSERT INTO tokens (user_id, token, refresh)
6969
VALUES (?, ?, ?)

examples/module_examples/standard/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async def add_token(self, token: str, refresh: str) -> twitchio.authentication.V
7070
# Make sure to call super() as it will add the tokens interally and return us some data...
7171
resp: twitchio.authentication.ValidateTokenPayload = await super().add_token(token, refresh)
7272

73-
# Store our tokens in a simle SQLite Database when they are authorized...
73+
# Store our tokens in a simple SQLite Database when they are authorized...
7474
query = """
7575
INSERT INTO tokens (user_id, token, refresh)
7676
VALUES (?, ?, ?)

0 commit comments

Comments
 (0)