summaryrefslogtreecommitdiff
path: root/docs/howto/outputting-csv.txt
diff options
context:
space:
mode:
authorAhmed Nassar <a.moh.nassar00@gmail.com>2025-04-14 14:12:56 -0300
committernessita <124304+nessita@users.noreply.github.com>2025-04-15 14:48:55 -0300
commitbe402891cd78f484b7f67e486924975523516ced (patch)
treed52b96b0b48d1b15dcc1182af0218b1efcfc87a6 /docs/howto/outputting-csv.txt
parentabbcef52801f920caf72f4e2016c4999ea8b98ec (diff)
Fixed #36311 -- Unified spelling of "hardcode" and its variants in docs.
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
Diffstat (limited to 'docs/howto/outputting-csv.txt')
-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 8e4bd8108c..6f2eedf3ba 100644
--- a/docs/howto/outputting-csv.txt
+++ b/docs/howto/outputting-csv.txt
@@ -121,7 +121,7 @@ Here's an example, which generates the same CSV file as above::
headers={"Content-Disposition": 'attachment; filename="somefilename.csv"'},
)
- # The data is hard-coded here, but you could load it from a database or
+ # The data is hardcoded here, but you could load it from a database or
# some other source.
csv_data = (
("First row", "Foo", "Bar", "Baz"),