bash: update multiline comments examples
This commit is contained in:
parent
e2d2eef9c2
commit
b95dacc8fa
10
bash.md
10
bash.md
|
@ -174,7 +174,10 @@ DIR=${SRC%$BASE} #=> "/path/to" (dirpath)
|
||||||
|
|
||||||
### Comments
|
### Comments
|
||||||
|
|
||||||
`# Single line comment`
|
```bash
|
||||||
|
# Single line comment
|
||||||
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
: '
|
: '
|
||||||
This is a
|
This is a
|
||||||
|
@ -182,11 +185,6 @@ multi line
|
||||||
comment
|
comment
|
||||||
'
|
'
|
||||||
```
|
```
|
||||||
```bash
|
|
||||||
# This is also
|
|
||||||
# a multi line
|
|
||||||
# Comment
|
|
||||||
```
|
|
||||||
|
|
||||||
### Substrings
|
### Substrings
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue