mirror of https://github.com/encode/starlette.git
Punctuation fix
This commit is contained in:
parent
185fb1a3d1
commit
8b6326876a
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
Starlette is a small library for working with [ASGI](https://asgi.readthedocs.io/en/latest/).
|
Starlette is a small library for working with [ASGI](https://asgi.readthedocs.io/en/latest/).
|
||||||
|
|
||||||
It gives you `Request` and `Response` classes, routing, a test client, and a
|
It gives you `Request` and `Response` classes, request routing, a test client, and a
|
||||||
decorator for writing super-minimal applications.
|
decorator for writing super-minimal applications.
|
||||||
|
|
||||||
**Requirements:**
|
**Requirements:**
|
||||||
|
@ -48,7 +48,7 @@ class App:
|
||||||
await response(receive, send)
|
await response(receive, send)
|
||||||
```
|
```
|
||||||
|
|
||||||
You can run the application with any ASGI server, including [uvicorn](http://www.uvicorn.org/), [daphne](https://github.com/django/daphne/), or [hypercorn](https://pgjones.gitlab.io/hypercorn/),
|
You can run the application with any ASGI server, including [uvicorn](http://www.uvicorn.org/), [daphne](https://github.com/django/daphne/), or [hypercorn](https://pgjones.gitlab.io/hypercorn/).
|
||||||
|
|
||||||
<p align="center">— ⭐️ —</p>
|
<p align="center">— ⭐️ —</p>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue