diff --git a/SC2122.md b/SC2122.md index 594ade4..6f650f6 100644 --- a/SC2122.md +++ b/SC2122.md @@ -2,7 +2,7 @@ ### Problematic code: - [[ a <= b ]] + [[ a <= 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