From cd00eba9d60dbeccd272e78544919846aa91c1e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BE=E5=9C=B0=20=E5=B8=8C=E7=95=99=E8=80=B6?= <65301509+KiruyaMomochi@users.noreply.github.com> Date: Mon, 28 Mar 2022 06:42:29 +0800 Subject: [PATCH] autotools doc: add missing right quote (#29734) --- lib/spack/docs/build_systems/autotoolspackage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spack/docs/build_systems/autotoolspackage.rst b/lib/spack/docs/build_systems/autotoolspackage.rst index 8e7e7d5d916..d341d28d086 100644 --- a/lib/spack/docs/build_systems/autotoolspackage.rst +++ b/lib/spack/docs/build_systems/autotoolspackage.rst @@ -433,7 +433,7 @@ For example: .. code-block:: python variant('profiler', when='@2.0:') - config_args += self.with_or_without('profiler) + config_args += self.with_or_without('profiler') will neither add ``--with-profiler`` nor ``--without-profiler`` when the version is below ``2.0``.