summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-04-22 12:54:10 (GMT)
committerKitware Robot <kwrobot@kitware.com>2022-04-22 12:54:23 (GMT)
commit32eba762bef091c74c1fe9c7e0b1e504ab71824f (patch)
tree2fc2a4ccba7053ca5ec36737255b89977fc596b3 /Help/guide/tutorial
parent7717848f9ea3e10913eee9eb38c975eb9df704ed (diff)
parent27589da7052019d8324069d02a623235219a4ba8 (diff)
downloadCMake-32eba762bef091c74c1fe9c7e0b1e504ab71824f.zip
CMake-32eba762bef091c74c1fe9c7e0b1e504ab71824f.tar.gz
CMake-32eba762bef091c74c1fe9c7e0b1e504ab71824f.tar.bz2
Merge topic 'wrong-header-referenced-in-guide' into release-3.23
27589da705 Help/guide: Fix wrong header file reference Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7196
Diffstat (limited to 'Help/guide/tutorial')
-rw-r--r--Help/guide/tutorial/Adding a Library.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Help/guide/tutorial/Adding a Library.rst b/Help/guide/tutorial/Adding a Library.rst
index ed03448..71755be 100644
--- a/Help/guide/tutorial/Adding a Library.rst
+++ b/Help/guide/tutorial/Adding a Library.rst
@@ -23,8 +23,9 @@ 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 ``mysqrt.h`` header file can be found. The
-last few lines of the top-level ``CMakeLists.txt`` file should now look like:
+an include directory so that the ``MathFunctions.h`` header file can be found.
+The last few lines of the top-level ``CMakeLists.txt`` file should now look
+like:
.. code-block:: cmake
:caption: CMakeLists.txt