소스 검색

[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"]
   }
 }
 --------------------------------------------------