Skip to content

Commit 292aff2

Browse files
Docs and readme
1 parent e2b4b58 commit 292aff2

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ or using a framework:
6060
```python
6161
from mangum import Mangum
6262
from starlette.applications import Starlette
63-
from starlette.responses import PlanTextResponse
63+
from starlette.responses import PlainTextResponse
6464
from starlette.routing import Route
6565

6666

docs/adapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Adapter
22

3-
The heart of Mangum is the adapter class. It is a configurable wrapper that allows any [ASGI](https://asgi.readthedocs.io/en/latest/) application (or framework) to run in an [AWS Lambda](https://aws.amazon.com/lambda/) deployment. The adapter accepts a number of keyword arguments to configure settings related to logging, HTTP, WebSocket, and API Gateway.
3+
The heart of Mangum is the adapter class. It is a configurable wrapper that allows any [ASGI](https://asgi.readthedocs.io/en/latest/) application (or framework) to run in an [AWS Lambda](https://aws.amazon.com/lambda/) deployment. The adapter accepts a number of keyword arguments to configure settings related to logging, HTTP & WebSocket events, lifespan behaviour, and API Gateway.
44

55
```python
66
handler = Mangum(

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ or using a framework:
5858
```python
5959
from mangum import Mangum
6060
from starlette.applications import Starlette
61-
from starlette.responses import PlanTextResponse
61+
from starlette.responses import PlainTextResponse
6262
from starlette.routing import Route
6363

6464

docs/release-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
* Refactor lifespan class to be more consistent with other cycle classes and to be more compliant with ASGI spec
66

7-
* Bugfix lifespan startup behaviour, allow lifespan cycle to be used as a context manager in the adapter [107](https://github.com/erm/mangum/issues/107).
7+
* Bugfix lifespan startup behaviour, allow lifespan cycle to be used as a context manager in the adapter [#107](https://github.com/erm/mangum/issues/107).
88

99
* Deprecate `enable_lifespan` parameter to be replaced by new `lifespan` option
1010

11-
* Include CHANGELOG in repo and release notes in documentation [110](https://github.com/erm/mangum/issues/110)
11+
* Include CHANGELOG in repo and release notes in documentation [#110](https://github.com/erm/mangum/issues/110)
1212

1313
* Update protocol classes generally with docstrings/comments/better state transitions/more compliant with ASGI spec.
1414

docs/websockets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ A data source is required in order to persist the WebSocket client connections s
8080
handler = Mangum(app, dsn="[postgresql|redis|dynamodb|s3|sqlite]://[...]")
8181
```
8282

83-
<small>Read the section on ([handling events in API Gateway](https://mangum.io/websockets/#handling-api-gateway-events) for more information.)</small>
83+
<small>*Read the section on ([handling events in API Gateway](https://mangum.io/websockets/#handling-api-gateway-events) for more information.)</small>
8484

8585
### Supported backends
8686

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def get_long_description():
77

88
setup(
99
name="mangum",
10-
version="0.9.0",
10+
version="0.9.1",
1111
packages=find_packages(),
1212
license="MIT",
1313
url="https://github.com/erm/mangum",

0 commit comments

Comments
 (0)