This is an automated email from the ASF dual-hosted git repository.
pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 6f51c58046 NIFI-12089 Fix typo in additionalDetails of CSVReader
6f51c58046 is described below
commit 6f51c580461dd5c0661ca4ccc56fcb0eeca3a194
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>