From 150db65731cfa1c3fdc43895f2972bb68a3e2804 Mon Sep 17 00:00:00 2001 From: ehendrickson2 <134078930+ehendrickson2@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:37:22 -0500 Subject: [PATCH] Fix typo in function name in design_development.md (#177) Co-authored-by: Eddie Hendrickson --- docs/user/design_development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/design_development.md b/docs/user/design_development.md index 450d579..0be2a36 100644 --- a/docs/user/design_development.md +++ b/docs/user/design_development.md @@ -49,7 +49,7 @@ The `jobs` directory contains everything that is needed for implementing a desig Within the `jobs` directory, the naming of modules and files is not important. However, it is recommended to use intuitive names to help understand each file's relationship with others. For instance, above there is are design contexts specified as both Python modules as well as YAML files and each design has exactly one design template. The relationship of context YAML files and context Python modules will be discussed later. -Designs are just specialized Nautobot jobs. Any design must inherit from `DesignJob`, and just like any other job, design jobs must be registered using `register_jbos`. An example design follows: +Designs are just specialized Nautobot jobs. Any design must inherit from `DesignJob`, and just like any other job, design jobs must be registered using `register_jobs`. An example design follows: ```python from nautobot.apps.jobs import register_jobs