docs: Fix a few typos (#2502)
Co-authored-by: Adam Hopkins <adam@amhopkins.com>
This commit is contained in:
parent
2fc21ad576
commit
312ab298fd
|
@ -999,7 +999,7 @@ class Sanic(BaseSanic, RunnerMixin, metaclass=TouchUpMeta):
|
||||||
def asgi_client(self): # noqa
|
def asgi_client(self): # noqa
|
||||||
"""
|
"""
|
||||||
A testing client that uses ASGI to reach into the application to
|
A testing client that uses ASGI to reach into the application to
|
||||||
execute hanlers.
|
execute handlers.
|
||||||
|
|
||||||
:return: testing client
|
:return: testing client
|
||||||
:rtype: :class:`SanicASGITestClient`
|
:rtype: :class:`SanicASGITestClient`
|
||||||
|
@ -1194,7 +1194,7 @@ class Sanic(BaseSanic, RunnerMixin, metaclass=TouchUpMeta):
|
||||||
`See user guide re: background tasks
|
`See user guide re: background tasks
|
||||||
<https://sanicframework.org/guide/basics/tasks.html#background-tasks>`__
|
<https://sanicframework.org/guide/basics/tasks.html#background-tasks>`__
|
||||||
|
|
||||||
:param task: future, couroutine or awaitable
|
:param task: future, coroutine or awaitable
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
loop = self.loop # Will raise SanicError if loop is not started
|
loop = self.loop # Will raise SanicError if loop is not started
|
||||||
|
|
|
@ -378,7 +378,7 @@ def get_config(
|
||||||
app: Sanic, ssl: Union[SanicSSLContext, CertSelector, SSLContext]
|
app: Sanic, ssl: Union[SanicSSLContext, CertSelector, SSLContext]
|
||||||
):
|
):
|
||||||
# TODO:
|
# TODO:
|
||||||
# - proper selection needed if servince with multiple certs insted of
|
# - proper selection needed if service with multiple certs insted of
|
||||||
# just taking the first
|
# just taking the first
|
||||||
if isinstance(ssl, CertSelector):
|
if isinstance(ssl, CertSelector):
|
||||||
ssl = cast(SanicSSLContext, ssl.sanic_select[0])
|
ssl = cast(SanicSSLContext, ssl.sanic_select[0])
|
||||||
|
|
|
@ -188,7 +188,7 @@ class Request:
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_current(cls) -> Request:
|
def get_current(cls) -> Request:
|
||||||
"""
|
"""
|
||||||
Retrieve the currrent request object
|
Retrieve the current request object
|
||||||
|
|
||||||
This implements `Context Variables
|
This implements `Context Variables
|
||||||
<https://docs.python.org/3/library/contextvars.html>`_
|
<https://docs.python.org/3/library/contextvars.html>`_
|
||||||
|
|
|
@ -252,7 +252,7 @@ class WebsocketImplProtocol:
|
||||||
|
|
||||||
def _force_disconnect(self) -> bool:
|
def _force_disconnect(self) -> bool:
|
||||||
"""
|
"""
|
||||||
Internal methdod used by end_connection and fail_connection
|
Internal method used by end_connection and fail_connection
|
||||||
only when the graceful auto-closer cannot be used
|
only when the graceful auto-closer cannot be used
|
||||||
"""
|
"""
|
||||||
if self.auto_closer_task and not self.auto_closer_task.done():
|
if self.auto_closer_task and not self.auto_closer_task.done():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user