diff --git a/SC2122.md b/SC2122.md index cf62f5a..f2c2eb9 100644 --- a/SC2122.md +++ b/SC2122.md @@ -2,14 +2,14 @@ ### Problematic code: -```sh -[[ a <= b ]] +```bash +[[ a >= b ]] ``` ### Correct code: -```sh -[[ ! a > b ]] +```bash +[[ ! a < b ]] ``` ### Rationale: