Fix minor discrepancy in workshop example (#60)

Map values of `agenda` should have a `name` instead of a `title` to be
consistent with the `TutorialPart` module.

Fixes #11.
This commit is contained in:
Edward Knight
2024-02-06 02:08:16 +00:00
committed by Dan Chao
parent 93b1e7ff01
commit 0fd469f3a6

View File

@@ -304,17 +304,17 @@ assistants {
agenda { agenda {
["beginners"] { ["beginners"] {
title = "Basic Configuration" name = "Basic Configuration"
part = 1 part = 1
duration = 45.min duration = 45.min
} }
["intermediates"] { ["intermediates"] {
title = "Filling out a Template" name = "Filling out a Template"
part = 2 part = 2
duration = 45.min duration = 45.min
} }
["experts"] { ["experts"] {
title = "Writing a Template" name = "Writing a Template"
part = 3 part = 3
duration = 45.min duration = 45.min
} }