Merge pull request #626 from maxcountryman/patch-1

correcting typo
This commit is contained in:
Kenneth Reitz 2012-11-05 15:51:04 -08:00
commit 692a5c2588

View file

@ -24,7 +24,7 @@ data and to then invoke that function and pass it to a response object::
yield ','.join(row) + '\n' yield ','.join(row) + '\n'
return Response(generate(), mimetype='text/csv') return Response(generate(), mimetype='text/csv')
Each ``yield`` expression is directly sent to the browser. Now though Each ``yield`` expression is directly sent to the browser. Note though
that some WSGI middlewares might break streaming, so be careful there in that some WSGI middlewares might break streaming, so be careful there in
debug environments with profilers and other things you might have enabled. debug environments with profilers and other things you might have enabled.