diff --git a/spectools/models.py b/spectools/models.py index a2509a5..fa43c5f 100644 --- a/spectools/models.py +++ b/spectools/models.py @@ -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',