This is an automated email from the ASF dual-hosted git repository.

pvillard pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
     new c2bd2a8454 NIFI-12089 Fix typo in additionalDetails of CSVReader
c2bd2a8454 is described below

commit c2bd2a8454a2471353723d20fd348af6a8240a8f
Author: EndzeitBegins <[email protected]>
AuthorDate: Tue Jan 9 20:08:00 2024 +0100

    NIFI-12089 Fix typo in additionalDetails of CSVReader
    
    Signed-off-by: Pierre Villard <[email protected]>
    
    This closes #8227.
---
 .../org.apache.nifi.csv.CSVReader/additionalDetails.html     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.csv.CSVReader/additionalDetails.html
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.csv.CSVReader/additionalDetails.html
index fd14a501f7..c3c903e92d 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.csv.CSVReader/additionalDetails.html
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.csv.CSVReader/additionalDetails.html
@@ -193,13 +193,13 @@ first customer!"<br />
   "type": "record",
   "fields": [
     { "name": "id", "type": "int" },
-    { "name": "name": "type": "string" },
-    { "name": "balance": "type": "double" },
+    { "name": "name", "type": "string" },
+    { "name": "balance", "type": "double" },
     { "name": "join_date", "type": {
       "type": "int",
       "logicalType": "date"
     }},
-    { "name": "notes": "type": "string" }
+    { "name": "notes", "type": "string" }
   ]
 }
 </pre>
@@ -333,9 +333,9 @@ first customer!"<br />
   "type": "record",
   "fields": [
     { "name": "id", "type": "int" },
-    { "name": "name": "type": "string" },
-    { "name": "balance": "type": "double" },
-    { "name": "memo": "type": "string" }
+    { "name": "name", "type": "string" },
+    { "name": "balance", "type": "double" },
+    { "name": "memo", "type": "string" }
   ]
 }
 </pre>

Reply via email to