1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 16:15:36 +02:00

case: remove unnecessary semicolon (#15446)

* Update case.md

* Update case.md
This commit is contained in:
Managor 2025-01-05 13:47:09 +02:00 committed by GitHub
parent dc70e5d889
commit dcac160720
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,7 @@
- Combine patterns with |, use * as a fallback pattern: - Combine patterns with |, use * as a fallback pattern:
`case {{$COUNTRULE}} in {{[wW]|words}}) {{wc -w README}} ;; {{[lL]|lines}}) {{wc -l README}} ;; *) {{echo "what?"}}; ;; esac` `case {{$COUNTRULE}} in {{[wW]|words}}) {{wc -w README}} ;; {{[lL]|lines}}) {{wc -l README}} ;; *) {{echo "what?"}} ;; esac`
- Allow matching multiple patterns: - Allow matching multiple patterns: