diff options
author | Joshua Perrett <jperrett256@gmail.com> | 2022-11-18 02:11:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-01-18 19:10:42 (GMT) |
commit | bef0b9eb647bcf15ff4b3ca7a97fec2a45be3773 (patch) | |
tree | 783325f8f7d723c4b06d396392a8bca4c29d5e6c /Help | |
parent | 20bbd5f3d3b63fcf1f62e1df3ec8ce3ba30d288b (diff) | |
download | CMake-bef0b9eb647bcf15ff4b3ca7a97fec2a45be3773.zip CMake-bef0b9eb647bcf15ff4b3ca7a97fec2a45be3773.tar.gz CMake-bef0b9eb647bcf15ff4b3ca7a97fec2a45be3773.tar.bz2 |
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.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step5/CMakeLists.txt b/Help/guide/tutorial/Step5/CMakeLists.txt index c894917..279ddf9 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. |