@@ -68,10 +68,9 @@ Writing an improver
6868Locate the Source File
6969^^^^^^^^^^^^^^^^^^^^^^^^
7070
71- If the improver will be working on data imported by a specific importer, it will be located in the same
72- file at :file: `vulnerabilites/importers/{ importer-name.py } `.
73- Otherwise, if it is a generic improver, create a new file
74- :file: `vulnerabilites/improvers/{ improver-name.py } `.
71+ If the improver will be working on data imported by a specific importer, it will be located in
72+ the same file at :file: `vulnerabilites/importers/{ importer-name.py } `. Otherwise, if it is a
73+ generic improver, create a new file :file: `vulnerabilites/improvers/{ improver-name.py } `.
7574
7675Explore Package Managers (Optional)
7776^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -107,10 +106,10 @@ the ``Advisory`` QuerySet returned by the ``interesting_advisories`` property.
107106It is expected to return an iterable of ``Inference `` objects for the given ``AdvisoryData ``. To
108107avoid storing a lot of Inferences in memory, it is preferable to yield from this method.
109108
110- A very simple Improver that processes all Advisories to create the minimal relationships that can be
111- obtained by existing data can be found at :file: `vulnerabilites/improvers/default.py `, which is an
112- example of a generic improver. For a more sophisticated and targeted example, you can look at an already
113- implemented improver (e.g., :file: `vulnerabilites/importers/nginx.py `).
109+ A very simple Improver that processes all Advisories to create the minimal relationships that can
110+ be obtained by existing data can be found at :file: `vulnerabilites/improvers/default.py `, which is
111+ an example of a generic improver. For a more sophisticated and targeted example, you can look
112+ at an already implemented improver (e.g., :file: `vulnerabilites/importers/nginx.py `).
114113
115114Improvers are not limited to improving discrete versions and may also improve ``aliases ``.
116115One such example, improving the importer written in the :ref: `importer tutorial
0 commit comments