diff options
author | Brad King <brad.king@kitware.com> | 2013-09-12 15:41:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-15 18:12:49 (GMT) |
commit | 441f2808eca5c1deed7e480ce3043c57c901b33c (patch) | |
tree | ff6f8e35a32be270def253dbcd41c3ef322f768a /Help/command/string.rst | |
parent | 6ceb6511554c41c14eafe882e5b94c0438e69bbc (diff) | |
download | CMake-441f2808eca5c1deed7e480ce3043c57c901b33c.zip CMake-441f2808eca5c1deed7e480ce3043c57c901b33c.tar.gz CMake-441f2808eca5c1deed7e480ce3043c57c901b33c.tar.bz2 |
Help: Fix reStructuredText syntax in auto-generated documents
Diffstat (limited to 'Help/command/string.rst')
-rw-r--r-- | Help/command/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/string.rst b/Help/command/string.rst index c191c63..1e18ca6 100644 --- a/Help/command/string.rst +++ b/Help/command/string.rst @@ -106,7 +106,7 @@ The following characters have special meaning in regular expressions: by all regular expression-related commands, including e.g. if( MATCHES ), in the variables CMAKE_MATCH_(0..9). -*, + and ? have higher precedence than concatenation. | has lower +``*``, ``+`` and ``?`` have higher precedence than concatenation. | has lower precedence than concatenation. This means that the regular expression "^ab+d$" matches "abbd" but not "ababd", and the regular expression "^(ab|cd)$" matches "ab" but not "abd". |