summaryrefslogtreecommitdiff
path: root/spec2doc.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-15 10:04:25 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-15 10:12:50 +0200
commite49c7597c091559caa5b1e0f2cabe1bb64ae9cb5 (patch)
tree33978dc3fba68ec39a77855148fc7816d0b56764 /spec2doc.py
parent1dc8ffb40d9d63673359af9a5bec44d33a657558 (diff)
Rename "rtemsqual" in "rtemsspec"
Diffstat (limited to 'spec2doc.py')
-rwxr-xr-xspec2doc.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec2doc.py b/spec2doc.py
index bc118796..bf36c584 100755
--- a/spec2doc.py
+++ b/spec2doc.py
@@ -25,17 +25,17 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
-import rtemsqual
+import rtemsspec
def main() -> None:
""" Generates files of the RTEMS documentation from the specification. """
- config = rtemsqual.util.load_config("config.yml")
- item_cache = rtemsqual.items.ItemCache(config["spec"])
- rtemsqual.applconfig.generate(config["appl-config"], item_cache)
- rtemsqual.specdoc.document(config["spec-documentation"], item_cache)
- rtemsqual.glossary.generate(config["glossary"], item_cache)
- rtemsqual.interfacedoc.generate(config["interface-documentation"],
+ config = rtemsspec.util.load_config("config.yml")
+ item_cache = rtemsspec.items.ItemCache(config["spec"])
+ rtemsspec.applconfig.generate(config["appl-config"], item_cache)
+ rtemsspec.specdoc.document(config["spec-documentation"], item_cache)
+ rtemsspec.glossary.generate(config["glossary"], item_cache)
+ rtemsspec.interfacedoc.generate(config["interface-documentation"],
item_cache)