diff options
author | Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com> | 2022-05-04 18:36:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-05-12 14:15:42 (GMT) |
commit | 308b698f5d5ff0e448f1bb0295eb011b06411e0c (patch) | |
tree | 48485bf543b145a327ece91cd9db0843d8c9b927 /Help | |
parent | 2045e1eee093e5125f6ade53ebe490a498bb99b4 (diff) | |
download | CMake-308b698f5d5ff0e448f1bb0295eb011b06411e0c.zip CMake-308b698f5d5ff0e448f1bb0295eb011b06411e0c.tar.gz CMake-308b698f5d5ff0e448f1bb0295eb011b06411e0c.tar.bz2 |
Help: Make install() example component names more consistent
This commit updates the documentation so that the component examples are
specified using title case to match convention used in both the existing
`Installing Exports` section and in the "Mastering CMake" book.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/install.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/install.rst b/Help/command/install.rst index 1a9dfd7..973aa31 100644 --- a/Help/command/install.rst +++ b/Help/command/install.rst @@ -85,7 +85,7 @@ signatures that specify them. The common options are: ``COMPONENT`` Specify an installation component name with which the install rule - is associated, such as "runtime" or "development". During + is associated, such as ``Runtime`` or ``Development``. During component-specific installation only install rules associated with the given component name will be executed. During a full installation all components are installed unless marked with ``EXCLUDE_FROM_ALL``. |