Skip to content

Commit ec9caea

Browse files
Minor changes to docs
1 parent fd3fc5c commit ec9caea

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ so show me the goods.
4343

4444
Found a problem and would like to fix it? Have that great idea and would love to see it in the repository?
4545

46+
> [!NOTE]
4647
> Please open an issue before you start working.
4748
4849
It saves a lot of time for everyone, and we are super happy to answer questions and help you along the way.

src/main/java/io/frictionlessdata/tableschema/tabledatasource/JsonArrayTableDataSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public Iterator<String[]> iterator() {
8181
values.add(val.asText(""));
8282
}
8383
} else if (input instanceof ArrayNode) {
84-
Iterator<JsonNode> elements = ((ArrayNode) input).elements();
84+
Iterator<JsonNode> elements = input.elements();
8585
while (elements.hasNext()) {
8686
values.add(elements.next().asText(""));
8787
}

0 commit comments

Comments
 (0)