summaryrefslogtreecommitdiff
path: root/Help
diff options
context:
space:
mode:
authorJoshua Perrett <jperrett256@gmail.com>2022-11-18 02:11:43 +0000
committerBrad King <brad.king@kitware.com>2023-01-18 14:10:42 -0500
commitbef0b9eb647bcf15ff4b3ca7a97fec2a45be3773 (patch)
tree783325f8f7d723c4b06d396392a8bca4c29d5e6c /Help
parent20bbd5f3d3b63fcf1f62e1df3ec8ce3ba30d288b (diff)
downloadcmake-bef0b9eb647bcf15ff4b3ca7a97fec2a45be3773.tar.gz
Tutorial: Fix exercise in Step 5 to match solution provided in Step 6
If you look at the solution for Step 6, you will see `0.0001` rather than `0.00001` used for the last test case. Fix the typo.
Diffstat (limited to 'Help')
-rw-r--r--Help/guide/tutorial/Step5/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step5/CMakeLists.txt b/Help/guide/tutorial/Step5/CMakeLists.txt
index c894917848..279ddf93a3 100644
--- a/Help/guide/tutorial/Step5/CMakeLists.txt
+++ b/Help/guide/tutorial/Step5/CMakeLists.txt
@@ -61,4 +61,4 @@ target_include_directories(Tutorial PUBLIC
# Hint: Use the PASS_REGULAR_EXPRESSION property with "4 is 2"
# TODO 9: Add more tests. Create a function called do_test to avoid copy +
-# paste. Test the following values: 4, 9, 5, 7, 25, -25 and 0.00001.
+# paste. Test the following values: 4, 9, 5, 7, 25, -25 and 0.0001.