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: