Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spectools/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def get_children_type_text(self):
elif min_amount == 1 and max_amount is None:
return 'In this order (One or more times)'
elif min_amount == 0 and max_amount == 1:
return 'In this order (Optional)'
return 'In this order (Zero ot one times)'
return {
XMLElement.CHILDREN_TYPE_UNORDERED: 'In any order',
XMLElement.CHILDREN_TYPE_SEQUENCE: 'In this order',
Expand Down