diff options
author | Mario Melara <maamelara@gmail.com> | 2018-02-27 20:15:35 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-02-27 20:15:35 -0800 |
commit | 14e3eb78a7b5c4f7b69ff62db7d4701d101cf850 (patch) | |
tree | 004a39c9311a9ea53e729f5fd09f2e6818657213 /lib | |
parent | 0e326c96873bc5f18d0ce33c2c68a7b90b8b7130 (diff) | |
download | spack-14e3eb78a7b5c4f7b69ff62db7d4701d101cf850.tar.gz spack-14e3eb78a7b5c4f7b69ff62db7d4701d101cf850.tar.bz2 spack-14e3eb78a7b5c4f7b69ff62db7d4701d101cf850.tar.xz spack-14e3eb78a7b5c4f7b69ff62db7d4701d101cf850.zip |
Fix class name in build system tutorials (#7346)
AutoTools -> Autotools
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/tutorial/examples/Autotools/0.package.py | 2 | ||||
-rw-r--r-- | lib/spack/docs/tutorial/examples/Autotools/1.package.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/docs/tutorial/examples/Autotools/0.package.py b/lib/spack/docs/tutorial/examples/Autotools/0.package.py index c84ed6de0b..9242fc2dcd 100644 --- a/lib/spack/docs/tutorial/examples/Autotools/0.package.py +++ b/lib/spack/docs/tutorial/examples/Autotools/0.package.py @@ -25,7 +25,7 @@ from spack import * -class Mpileaks(AutoToolsPackage): +class Mpileaks(AutotoolsPackage): """Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes.""" diff --git a/lib/spack/docs/tutorial/examples/Autotools/1.package.py b/lib/spack/docs/tutorial/examples/Autotools/1.package.py index eaf85322c1..1bb325bf79 100644 --- a/lib/spack/docs/tutorial/examples/Autotools/1.package.py +++ b/lib/spack/docs/tutorial/examples/Autotools/1.package.py @@ -25,7 +25,7 @@ from spack import * -class Mpileaks(AutoToolsPackage): +class Mpileaks(AutotoolsPackage): """Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes.""" |