Skip to content

Commit e364a96

Browse files
authored
Fix a typo in ASGI docs (#1036)
Signed-off-by: Eden Yemini <[email protected]>
1 parent eeec421 commit e364a96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/exporting/http/asgi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ app = make_asgi_app()
1414
Such an application can be useful when integrating Prometheus metrics with ASGI
1515
apps.
1616

17-
By default, the WSGI application will respect `Accept-Encoding:gzip` headers used by Prometheus
17+
By default, the ASGI application will respect `Accept-Encoding:gzip` headers used by Prometheus
1818
and compress the response if such a header is present. This behaviour can be disabled by passing
1919
`disable_compression=True` when creating the app, like this:
2020

2121
```python
2222
app = make_asgi_app(disable_compression=True)
23-
```
23+
```

0 commit comments

Comments
 (0)