Updated SC2122 (markdown)

koalaman
2014-03-16 14:50:46 -07:00
parent 300215c3ea
commit 586a1e28d3

@@ -2,7 +2,7 @@
### Problematic code:
[[ a <= b ]]
[[ a &lt;= b ]]
### Correct code:
@@ -10,7 +10,7 @@
### Rationale:
The typical operators `<=` and `>=` are not supported by Bourne shells. Instead of "less than or equal", rewrite as "not greater than".
The operators `<=` and `>=` are not supported by Bourne shells. Instead of "less than or equal", rewrite as "not greater than".
### Contraindications