docs/comments: fix typo with wildcard import (#50379)

This commit is contained in:
Harmen Stoppels
2025-05-08 18:37:45 +02:00
committed by GitHub
parent 6f2393a345
commit a95fa26857
2 changed files with 4 additions and 4 deletions

View File

@@ -497,7 +497,7 @@ extends Spack's ``Package`` class. For example, here is
.. code-block:: python
:linenos:
from spack import *
from spack.package import *
class Libelf(Package):
""" ... description ... """
@@ -1089,7 +1089,7 @@ You've already seen the ``homepage`` and ``url`` package attributes:
.. code-block:: python
:linenos:
from spack import *
from spack.package import *
class Mpich(Package):
@@ -6183,7 +6183,7 @@ running:
.. code-block:: python
from spack import *
from spack.package import *
This is already part of the boilerplate for packages created with
``spack create``.