فهرست منبع

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

Corrects an example array in a snippet of the CSV processor docs.
David Pilato 5 سال پیش
والد
کامیت
e51b8a51aa
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      docs/reference/ingest/processors/csv.asciidoc

+ 1 - 1
docs/reference/ingest/processors/csv.asciidoc

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