Fixed a syntax error

This commit is contained in:
Armin Ronacher 2012-07-02 09:11:24 +01:00
parent 07878722a8
commit 1beb0f2e7f

View file

@ -113,7 +113,7 @@ def stream_with_context(generator_or_function):
yield '!'
return Response(generate())
Alternatively it can also be used around a specific generator:
Alternatively it can also be used around a specific generator::
from flask import stream_with_context, request, Response