Skip to content

Commit

Permalink
renamed v2/models.rules to rule.py, updated comments
Browse files Browse the repository at this point in the history
  • Loading branch information
calumbell committed Oct 9, 2024
1 parent 0540833 commit 3963750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api_v2/models/rules.py → api_v2/models/rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

class RuleSet(HasName, HasDescription, FromDocument):
"""
The RuleGroup model contains a set of Rules as part of a larger article, or
The RuleSet model contains a set of Rules as part of a larger article, or
as a chapter of a book.
"""
key = key_field()


class Rule(HasName, HasDescription, FromDocument):
""""
The Rule model contains information about a single rule from a larger RuleGroup.
The Rule model contains information about a single rule from a larger RuleSet.
Each Rule is typically a paragraph or two long and might contain tables.
"""

Expand Down

0 comments on commit 3963750

Please sign in to comment.