Merge pull request #4 from jan4843/patch-2

Fix confusing substring examples
This commit is contained in:
black 2019-09-20 16:56:18 +03:00 committed by GitHub
commit 9f252b5aa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,12 +193,12 @@ John Black is my name.
```shell ```shell
case $var in case $var in
*sub_string*) *sub_string1*)
# Do stuff # Do stuff
;; ;;
*sub_string2*) *sub_string2*)
# Do more stuff # Do other stuff
;; ;;
*) *)
@ -213,12 +213,12 @@ esac
```shell ```shell
case $var in case $var in
sub_string*) sub_string1*)
# Do stuff # Do stuff
;; ;;
sub_string2*) sub_string2*)
# Do more stuff # Do other stuff
;; ;;
*) *)
@ -233,12 +233,12 @@ esac
```shell ```shell
case $var in case $var in
*sub_string) *sub_string1)
# Do stuff # Do stuff
;; ;;
*sub_string2) *sub_string2)
# Do more stuff # Do other stuff
;; ;;
*) *)