diff options
author | fazl <5173704+fazl@users.noreply.github.com> | 2020-12-29 10:00:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-01-04 17:02:09 (GMT) |
commit | b42a63605c70eb354985d881731ee3189dc7dfc4 (patch) | |
tree | 9d2dec4e1562bdd494a0e077abf76ac889e4af10 | |
parent | f1ca52d48e8826afad76b2338bad5961632bd3af (diff) | |
download | CMake-b42a63605c70eb354985d881731ee3189dc7dfc4.zip CMake-b42a63605c70eb354985d881731ee3189dc7dfc4.tar.gz CMake-b42a63605c70eb354985d881731ee3189dc7dfc4.tar.bz2 |
Tutorial: Fix minor typo in index.rst
s/mqsqrt.h/mysqrt.h/
-rw-r--r-- | Help/guide/tutorial/index.rst | 2 |
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 |