This is an automated email from the ASF dual-hosted git repository.
mthomsen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/master by this push:
new f6842a5 Fix syntax error in schema example
f6842a5 is described below
commit f6842a52005af7300280f0b817de229425f3f896
Author: FaizFizy Rosle <[email protected]>
AuthorDate: Tue Sep 17 14:07:02 2019 +0800
Fix syntax error in schema example
This closes #3745
Signed-off-by: Mike Thomsen <[email protected]>
---
.../resources/docs/org.apache.nifi.xml.XMLReader/additionalDetails.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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.xml.XMLReader/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.xml.XMLReader/additionalDetails.html
index 1444d48..b8e1dff 100755
---
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.xml.XMLReader/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.xml.XMLReader/additionalDetails.html
@@ -125,7 +125,7 @@
"type": "record",
"fields": [
{ "name": "array_field", "type":
- { "type": "array", "items": string }
+ { "type": "array", "items": "string" }
},
{ "name": "simple_field", "type": "string" }
]