Skip to content

Commit

Permalink
Merge f141cd8 into 47f92f5
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavin001 committed Jul 12, 2017
2 parents 47f92f5 + f141cd8 commit 5233cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/xsd/xsdElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class XSDElement extends Element {
*/
isMany() {
if (this.$maxOccurs === 'unbounded') return true;
return Number(this.$maxOccurs) > 0;
return Number(this.$maxOccurs) > 1;
}
}

Expand Down

0 comments on commit 5233cad

Please sign in to comment.