From 586a1e28d3e9a7dd26095f017f7c49203b4e4531 Mon Sep 17 00:00:00 2001 From: koalaman Date: Sun, 16 Mar 2014 14:50:46 -0700 Subject: [PATCH] Updated SC2122 (markdown) --- SC2122.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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