diff options
author | Maxim Belkin <maxim.belkin@gmail.com> | 2021-03-21 18:52:46 -0500 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-05-21 19:42:12 +0200 |
commit | 68ef6fce92766601a34fa5bc221f0e9e0dba09d5 (patch) | |
tree | 5496eb8cd56560329923d8bc960d4a4292b1ee21 | |
parent | 0b5c5b8068be0a973d1ed37cb011bb0cbba3e763 (diff) | |
download | spack-68ef6fce92766601a34fa5bc221f0e9e0dba09d5.tar.gz spack-68ef6fce92766601a34fa5bc221f0e9e0dba09d5.tar.bz2 spack-68ef6fce92766601a34fa5bc221f0e9e0dba09d5.tar.xz spack-68ef6fce92766601a34fa5bc221f0e9e0dba09d5.zip |
clingo: fix typo (#22444)
-rw-r--r-- | var/spack/repos/builtin/packages/clingo/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/clingo/package.py b/var/spack/repos/builtin/packages/clingo/package.py index c15a075731..7f43f4708b 100644 --- a/var/spack/repos/builtin/packages/clingo/package.py +++ b/var/spack/repos/builtin/packages/clingo/package.py @@ -30,7 +30,7 @@ class Clingo(CMakePackage): version('5.3.0', sha256='b0d406d2809352caef7fccf69e8864d55e81ee84f4888b0744894977f703f976') version('5.2.2', sha256='da1ef8142e75c5a6f23c9403b90d4f40b9f862969ba71e2aaee9a257d058bfcf') - variant("docs", default=False, description="build documentation with Doxyegen") + variant("docs", default=False, description="build documentation with Doxygen") variant("python", default=True, description="build with python bindings") depends_on('doxygen', type="build", when="+docs") |