diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-11-06 01:38:31 (GMT) |
---|---|---|
committer | Alex Turbov <i.zaufi@gmail.com> | 2022-11-07 18:55:06 (GMT) |
commit | cc8837606c62d8c099a43faeb59e79994fb623df (patch) | |
tree | b1a64645b705c1d849bfcac83ddf8c0c20d1e33f /Help | |
parent | c9eb090902e5507e7f579d71d7a42c23689c8c8a (diff) | |
download | CMake-cc8837606c62d8c099a43faeb59e79994fb623df.zip CMake-cc8837606c62d8c099a43faeb59e79994fb623df.tar.gz CMake-cc8837606c62d8c099a43faeb59e79994fb623df.tar.bz2 |
Help: Unindent _See Also_ related commands list
To make it similar to other commands.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/block.rst | 6 | ||||
-rw-r--r-- | Help/command/foreach.rst | 6 | ||||
-rw-r--r-- | Help/command/if.rst | 6 | ||||
-rw-r--r-- | Help/command/return.rst | 2 | ||||
-rw-r--r-- | Help/command/while.rst | 8 |
5 files changed, 13 insertions, 15 deletions
diff --git a/Help/command/block.rst b/Help/command/block.rst index 9d37deb..6de784f 100644 --- a/Help/command/block.rst +++ b/Help/command/block.rst @@ -70,6 +70,6 @@ inside this block. See Also ^^^^^^^^ - * :command:`endblock` - * :command:`return` - * :command:`cmake_policy` +* :command:`endblock` +* :command:`return` +* :command:`cmake_policy` diff --git a/Help/command/foreach.rst b/Help/command/foreach.rst index ddf8dfa..c3fdbf7 100644 --- a/Help/command/foreach.rst +++ b/Help/command/foreach.rst @@ -74,8 +74,7 @@ processed: message(STATUS "X=${X}") endforeach() -yields -:: +yields:: -- X=0 -- X=1 @@ -119,8 +118,7 @@ iteration variables as follows: message(STATUS "en=${en}, ba=${ba}") endforeach() -yields -:: +yields:: -- num_0=one, num_1=satu -- num_0=two, num_1=dua diff --git a/Help/command/if.rst b/Help/command/if.rst index b72769f..a57630b 100644 --- a/Help/command/if.rst +++ b/Help/command/if.rst @@ -428,6 +428,6 @@ condition syntax accepts ``<variable|string>``. See also ^^^^^^^^ - * :command:`else` - * :command:`elseif` - * :command:`endif` +* :command:`else` +* :command:`elseif` +* :command:`endif` diff --git a/Help/command/return.rst b/Help/command/return.rst index 029fd05..8ee7720 100644 --- a/Help/command/return.rst +++ b/Help/command/return.rst @@ -51,4 +51,4 @@ is expanded in place and therefore cannot handle ``return()``. See Also ^^^^^^^^ - * :command:`block` +* :command:`block` diff --git a/Help/command/while.rst b/Help/command/while.rst index 0bafae5..cb0fa2d 100644 --- a/Help/command/while.rst +++ b/Help/command/while.rst @@ -27,7 +27,7 @@ If used, it must be a verbatim repeat of the argument of the opening See Also ^^^^^^^^ - * :command:`break` - * :command:`continue` - * :command:`foreach` - * :command:`endwhile` +* :command:`break` +* :command:`continue` +* :command:`foreach` +* :command:`endwhile` |