Updated SC2019 (markdown)

koalaman
2017-06-18 15:19:46 -07:00
parent 5f61ad8702
commit d736a1ce11

@@ -1,13 +1,3 @@
## Use '[:upper:]' to support accents and foreign alphabets. ## Use '[:upper:]' to support accents and foreign alphabets.
### Problematic code: See the equivalent warning for lowercase matching: [[SC2018]]
```sh
PLATFORM="$(uname -s | tr 'A-Z')"
```
### Correct code:
```sh
PLATFORM="$(uname -s | tr '[:upper:]')"
```