Updated SC2065 (markdown)

Mingye Wang
2015-09-25 10:40:24 -04:00
parent 6a51eec950
commit 4df583c67a

@@ -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: