From d45b8bb03e17348b2220f90318ae32fa3bb42a12 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 16 Oct 2019 14:27:06 -0400 Subject: [PATCH] Docs fixes from my code review --- docs/plugins/export.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/plugins/export.rst b/docs/plugins/export.rst index a88925765..6be20bec7 100644 --- a/docs/plugins/export.rst +++ b/docs/plugins/export.rst @@ -63,7 +63,7 @@ These options match the options from the `Python json module`_. - **CSV Formatting** - **delimiter**: Used as the separating character between fields. The default value is a comma (,). - - **dialect**: A dialect is a construct that allows you to create, store, and re-use various formatting parameters for your data. + - **dialect**: The kind of CSV file to produce. The default is `excel`. These options match the options from the `Python csv module`_. @@ -77,8 +77,8 @@ The default options look like this:: ensure_ascii: False indent: 4 separators: [',' , ': '] - sort_keys: True + sort_keys: true csv: formatting: delimiter: ',' - dialect: 'excel' + dialect: excel