summaryrefslogtreecommitdiff
path: root/Help/guide/tutorial/index.rst
diff options
context:
space:
mode:
authorfazl <5173704+fazl@users.noreply.github.com>2020-12-29 11:00:25 +0100
committerBrad King <brad.king@kitware.com>2021-01-04 12:02:09 -0500
commitb42a63605c70eb354985d881731ee3189dc7dfc4 (patch)
tree9d2dec4e1562bdd494a0e077abf76ac889e4af10 /Help/guide/tutorial/index.rst
parentf1ca52d48e8826afad76b2338bad5961632bd3af (diff)
downloadcmake-b42a63605c70eb354985d881731ee3189dc7dfc4.tar.gz
Tutorial: Fix minor typo in index.rst
s/mqsqrt.h/mysqrt.h/
Diffstat (limited to 'Help/guide/tutorial/index.rst')
-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 4b09e53a90..00fa39a715 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