Updated SC2122 (markdown)

Eisuke Kawashima
2025-07-29 10:08:22 +09:00
parent 7545a421e6
commit d07d87552e

@@ -2,14 +2,14 @@
### Problematic code: ### Problematic code:
```sh ```bash
[[ a <= b ]] [[ a >= b ]]
``` ```
### Correct code: ### Correct code:
```sh ```bash
[[ ! a > b ]] [[ ! a < b ]]
``` ```
### Rationale: ### Rationale: