diff options
author | Chimrod <> | 2024-03-27 15:50:19 +0100 |
---|---|---|
committer | Chimrod <> | 2024-03-27 15:50:19 +0100 |
commit | 14504f36b603984c14b05995a8928cbd40dfa670 (patch) | |
tree | 5e495fa99cd71c22fe461b98ca7c36d86beccc6a | |
parent | 9bb8792a680f19f4a02b402fcf580b5cff245873 (diff) |
Update the readme as well
-rw-r--r-- | readme.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -84,3 +84,15 @@ The application will report text strings containing only one expression with a For example `"<<$variable>>"` can be written directly: `$variable>`. This test will not report this usage when an integer converted into a string this way. +### Duplicated test + +In a single if branch, check if the same is repeated more than one once. In +this case, only the first case is executed and the other test is ignored. + +A warining will be raised here: + + if $value = '1': + ! Do something + elseif $value = '1': + ! Do something else + end |