Skip to content

Commit 093edf1

Browse files
authored
Merge pull request #250 from David-Hinschberger/patch-1
Update requests_html.py
2 parents 47b2ad8 + b2cb028 commit 093edf1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

requests_html.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ def render(self, retries: int = 8, script: str = None, wait: float = 0.2, scroll
583583
Chromium into your home directory (``~/.pyppeteer``).
584584
"""
585585

586-
self.browser = self.session.browser # Automatycally create a event loop and browser
586+
self.browser = self.session.browser # Automatically create a event loop and browser
587587
content = None
588588

589589
# Automatically set Reload to False, if example URL is being used.
@@ -766,8 +766,8 @@ async def close(self):
766766

767767
def run(self, *coros):
768768
""" Pass in all the coroutines you want to run, it will wrap each one
769-
in a task, run it and wait for the result. Retuen a list with all
770-
results, this are returned in the same order coros are passed in. """
769+
in a task, run it and wait for the result. Return a list with all
770+
results, this is returned in the same order coros are passed in. """
771771
tasks = [
772772
asyncio.ensure_future(coro()) for coro in coros
773773
]

0 commit comments

Comments
 (0)