Merge pull request #3611 from zc-mattcen/docs-typo

docs: Typo in run example
This commit is contained in:
Benoit Chesneau 2026-05-05 01:23:24 +02:00 committed by GitHub
commit b45c70df10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ def app(environ, start_response):
status = "200 OK"
response_headers = [
("Content-type", "text/plain"),
("Content-Length", str(len(data.md)))
("Content-Length", str(len(data)))
]
start_response(status, response_headers)
return iter([data])