Fix imports in docs

This commit is contained in:
Tom Christie 2018-09-05 12:50:00 +01:00
parent e6cd2d7e86
commit 0d2e7e13d3
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ dispatch to an `HTTPEndpoint` class by using the `@app.route()` decorator, or th
than to an instance of the class:
```python
from starlette.app import Starlette
from starlette.response import PlainTextResponse
from starlette.applications import Starlette
from starlette.responses import PlainTextResponse
from starlette.endpoints import HTTPEndpoint