summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Wolf <mail@kai-wolf.me>2018-02-04 07:41:03 (GMT)
committerKai Wolf <mail@kai-wolf.me>2018-02-04 07:41:03 (GMT)
commitb95eda9b11ff2ba8baccf6208bb43c4c3cfa3479 (patch)
tree0ec6af68668d0829a8bd7f54aaa2a46e74ce6a27
parentb4a06e2cf7129155ed9260fd71eac5a2557c297f (diff)
downloadCMake-b95eda9b11ff2ba8baccf6208bb43c4c3cfa3479.zip
CMake-b95eda9b11ff2ba8baccf6208bb43c4c3cfa3479.tar.gz
CMake-b95eda9b11ff2ba8baccf6208bb43c4c3cfa3479.tar.bz2
Help: Fix code example in cmake_parse_arguments.rst
-rw-r--r--Help/command/cmake_parse_arguments.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/cmake_parse_arguments.rst b/Help/command/cmake_parse_arguments.rst
index b334a89..efbef54 100644
--- a/Help/command/cmake_parse_arguments.rst
+++ b/Help/command/cmake_parse_arguments.rst
@@ -62,7 +62,7 @@ as the real :command:`install` command:
.. code-block:: cmake
- function(MY_INSTALL)
+ macro(my_install)
set(options OPTIONAL FAST)
set(oneValueArgs DESTINATION RENAME)
set(multiValueArgs TARGETS CONFIGURATIONS)