From 3963750d3f6e5b10a39dc72794967201c378d908 Mon Sep 17 00:00:00 2001 From: calumbell <calumabell@googlemail.com> Date: Wed, 9 Oct 2024 22:21:06 +0100 Subject: [PATCH] renamed v2/models.rules to rule.py, updated comments --- api_v2/models/{rules.py => rule.py} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename api_v2/models/{rules.py => rule.py} (90%) diff --git a/api_v2/models/rules.py b/api_v2/models/rule.py similarity index 90% rename from api_v2/models/rules.py rename to api_v2/models/rule.py index 6c9703e0..e2e4e3f8 100644 --- a/api_v2/models/rules.py +++ b/api_v2/models/rule.py @@ -4,7 +4,7 @@ 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() @@ -12,7 +12,7 @@ class RuleSet(HasName, HasDescription, FromDocument): 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. """