]> git.ipfire.org Git - thirdparty/starlette.git/commitdiff
Link to ASGI spec
authorTom Christie <tom@tomchristie.com>
Mon, 25 Jun 2018 14:35:22 +0000 (15:35 +0100)
committerTom Christie <tom@tomchristie.com>
Mon, 25 Jun 2018 14:35:22 +0000 (15:35 +0100)
README.md

index 30d30ecf4c6a5ed7be117abf01607b1e6d458a60..6daa223d135d02f51e5cb24c974a746225d3f156 100644 (file)
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@
 
 ---
 
-Starlette is a small library for working with ASGI.
+Starlette is a small library for working with [ASGI](https://asgi.readthedocs.io/en/latest/).
 
 It gives you `Request` and `Response` classes, a test client, and a
 decorator for writing super-minimal applications.
@@ -69,6 +69,9 @@ Signature: `Response(content=b'', status_code=200, headers=None, media_type=None
 Starlette will automatically include a content-length header. It will also
 set the content-type header, including a charset for text types.
 
+Once you've instantiated a response, you can send it by calling it as an
+ASGI application instance.
+
 ```python
 class App:
     def __init__(self, scope):