diff options
author | Craig Scott <craig.scott@crascit.com> | 2019-11-02 07:22:23 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2019-11-02 07:22:50 (GMT) |
commit | ad024439f50f79f76b10b31f1c1a3e5f73f09462 (patch) | |
tree | f980443b831e03b284e77a3f8476057bf2ced380 | |
parent | c1d5d5eb11e0260ffadda0851ac844ab46b6b179 (diff) | |
download | CMake-ad024439f50f79f76b10b31f1c1a3e5f73f09462.zip CMake-ad024439f50f79f76b10b31f1c1a3e5f73f09462.tar.gz CMake-ad024439f50f79f76b10b31f1c1a3e5f73f09462.tar.bz2 |
Help: list(REMOVE_ITEM) removes all instances, not just the first found
Fixes: #19908
-rw-r--r-- | Help/command/list.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/list.rst b/Help/command/list.rst index 39e7e2a..50bf417 100644 --- a/Help/command/list.rst +++ b/Help/command/list.rst @@ -180,7 +180,7 @@ Insert elements to the 0th position in the list. list(REMOVE_ITEM <list> <value> [<value> ...]) -Removes the given items from the list. +Removes all instances of the given items from the list. .. _REMOVE_AT: |