From 4df583c67a0d8fea858bef82e08dfbc7e4132d88 Mon Sep 17 00:00:00 2001 From: Mingye Wang Date: Fri, 25 Sep 2015 10:40:24 -0400 Subject: [PATCH] Updated SC2065 (markdown) --- SC2065.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SC2065.md b/SC2065.md index 8123a5e..fdfcb1f 100644 --- a/SC2065.md +++ b/SC2065.md @@ -3,13 +3,13 @@ ### Problematic code: ```sh -[ 3>2 ] || [ 3>'aaa bb' ] # Simple example of problematic code +[ 1 >2 ] || [ 3>'aaa bb' ] # Simple example of problematic code ``` ### Correct code: ```sh -[ 3 -gt 2 ] || [ 3 > 'aaa bb' ] # arithmetical, lexicographical +[ 1 -gt 2 ] || [ 3 > 'aaa bb' ] # arithmetical, lexicographical ``` ### Rationale: