Skip to content

Commit 8cf7e38

Browse files
committed
README.md formatting fix: shell -> sh (mdbook-friendly)
1 parent b059f5d commit 8cf7e38

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -586,15 +586,15 @@ Differences to `@depends_on`:
586586

587587
Operationally `@calls` desugars to a nested `makesure` invocation:
588588

589-
```shell
589+
```sh
590590
@goal a
591591
echo a
592592

593593
@goal b
594594
@calls a
595595
```
596596
desugars to
597-
```shell
597+
```sh
598598
@goal a
599599
echo a
600600

@@ -650,7 +650,7 @@ There is a loop in goal dependencies via a -> c
650650

651651
You can use `@calls` to invoke a [parameterized goal](#parameterized-goal):
652652

653-
```shell
653+
```sh
654654
@goal hello @params WHO
655655
echo "Hello $WHO!"
656656

@@ -671,13 +671,13 @@ Hello hacker!
671671
You can mix `@calls` and `@depends_on` but please note, that _depended-on_ goal will be invoked before the _called_ one.
672672
So this is valid:
673673

674-
```shell
674+
```sh
675675
@goal a
676676
@calls b
677677
@depends_on c
678678
```
679679
but you better write it as:
680-
```shell
680+
```sh
681681
@goal a
682682
@depends_on c
683683
@calls b

0 commit comments

Comments
 (0)