Skip to content

Commit d95931e

Browse files
committed
doc: fix import path on custom templates
1 parent 6296d2e commit d95931e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/guides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ overseer.load_template("myplugin.second_task")
4343
If you have multiple templates that you would like to expose as a bundle, you can create an alias module. For example, put the following into `overseer/template/myplugin/init.lua`:
4444

4545
```lua
46-
return { "first_task", "second_task" }
46+
return { "myplugin.first_task", "myplugin.second_task" }
4747
```
4848

4949
This is how `builtin` references all of the different built-in templates.

0 commit comments

Comments
 (0)