[DOS] Fix typo in CSV processor docs (#52649)

Corrects an example array in a snippet of the CSV processor docs.
This commit is contained in:
David Pilato 2020-02-25 14:47:58 +01:00 committed by James Rodewig
parent 49f37989c4
commit 6c6ab8fa47

View File

@ -23,7 +23,7 @@ include::common-options.asciidoc[]
{
"csv": {
"field": "my_field",
"target_fields": ["field1, field2"]
"target_fields": ["field1", "field2"]
}
}
--------------------------------------------------