File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -586,15 +586,15 @@ Differences to `@depends_on`:
586
586
587
587
Operationally ` @calls ` desugars to a nested ` makesure ` invocation:
588
588
589
- ``` shell
589
+ ``` sh
590
590
@goal a
591
591
echo a
592
592
593
593
@goal b
594
594
@calls a
595
595
```
596
596
desugars to
597
- ``` shell
597
+ ``` sh
598
598
@goal a
599
599
echo a
600
600
@@ -650,7 +650,7 @@ There is a loop in goal dependencies via a -> c
650
650
651
651
You can use ` @calls ` to invoke a [ parameterized goal] ( #parameterized-goal ) :
652
652
653
- ``` shell
653
+ ``` sh
654
654
@goal hello @params WHO
655
655
echo " Hello $WHO !"
656
656
@@ -671,13 +671,13 @@ Hello hacker!
671
671
You can mix ` @calls ` and ` @depends_on ` but please note, that _ depended-on_ goal will be invoked before the _ called_ one.
672
672
So this is valid:
673
673
674
- ``` shell
674
+ ``` sh
675
675
@goal a
676
676
@calls b
677
677
@depends_on c
678
678
```
679
679
but you better write it as:
680
- ``` shell
680
+ ``` sh
681
681
@goal a
682
682
@depends_on c
683
683
@calls b
You can’t perform that action at this time.
0 commit comments