Skip to content

Commit d091b92

Browse files
committed
Update import references to support MAML replacing YAML
1 parent bfb132e commit d091b92

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ Returns array of hosts selected by user via CLI.
7979
import(string $file): void
8080
```
8181

82-
Import other php or yaml recipes.
82+
Import other PHP or MAML recipes.
8383

8484
```php
8585
import('recipe/common.php');
8686
```
8787

8888
```php
89-
import(__DIR__ . '/config/hosts.yaml');
89+
import(__DIR__ . '/config/hosts.maml');
9090
```
9191

9292

src/functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,14 @@ function selectedHosts(): array
145145
}
146146

147147
/**
148-
* Import other php or yaml recipes.
148+
* Import other PHP or MAML recipes.
149149
*
150150
* ```php
151151
* import('recipe/common.php');
152152
* ```
153153
*
154154
* ```php
155-
* import(__DIR__ . '/config/hosts.yaml');
155+
* import(__DIR__ . '/config/hosts.maml');
156156
* ```
157157
*/
158158
function import(string $file): void

0 commit comments

Comments
 (0)