summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-01-04 18:30:11 (GMT)
committerKitware Robot <kwrobot@kitware.com>2021-01-04 18:30:18 (GMT)
commit49cec642aff38ccfd4b4d995b98b61bae3750c60 (patch)
tree9d2dec4e1562bdd494a0e077abf76ac889e4af10
parentf1ca52d48e8826afad76b2338bad5961632bd3af (diff)
parentb42a63605c70eb354985d881731ee3189dc7dfc4 (diff)
downloadCMake-49cec642aff38ccfd4b4d995b98b61bae3750c60.zip
CMake-49cec642aff38ccfd4b4d995b98b61bae3750c60.tar.gz
CMake-49cec642aff38ccfd4b4d995b98b61bae3750c60.tar.bz2
Merge topic 'tutorial-typo'
b42a63605c Tutorial: Fix minor typo in index.rst Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5662
-rw-r--r--Help/guide/tutorial/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/index.rst b/Help/guide/tutorial/index.rst
index 4b09e53..00fa39a 100644
--- a/Help/guide/tutorial/index.rst
+++ b/Help/guide/tutorial/index.rst
@@ -176,7 +176,7 @@ directory:
To make use of the new library we will add an :command:`add_subdirectory`
call in the top-level ``CMakeLists.txt`` file so that the library will get
built. We add the new library to the executable, and add ``MathFunctions`` as
-an include directory so that the ``mqsqrt.h`` header file can be found. The
+an include directory so that the ``mysqrt.h`` header file can be found. The
last few lines of the top-level ``CMakeLists.txt`` file should now look like:
.. code-block:: cmake