summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorZeilentaucher <97534187+Zeilentaucher@users.noreply.github.com>2022-01-12 07:36:27 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-01-12 07:36:55 +0100
commit89d88414dc69d04499e14f3614d42fcb820976b9 (patch)
treeb71e40369fb224e17005e877f254715484770436 /docs
parentcf4128e6e90ed5e1d9fbc3867a914e68d7ae3de5 (diff)
[4.0.x] Fixed #33432 -- Fixed typo in docs/howto/outputting-csv.txt.
Backport of 658dc7045aaba548f908bb26a370eb89fb393bca from main
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/outputting-csv.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/outputting-csv.txt b/docs/howto/outputting-csv.txt
index 44461cf4ce..6966466921 100644
--- a/docs/howto/outputting-csv.txt
+++ b/docs/howto/outputting-csv.txt
@@ -112,7 +112,7 @@ Here's an example, which generates the same CSV file as above::
def some_view(request):
# Create the HttpResponse object with the appropriate CSV header.
response = HttpResponse(
- content_type='text/csv'
+ content_type='text/csv',
headers={'Content-Disposition': 'attachment; filename="somefilename.csv"'},
)