From 5e72d42575a11476e8647c7b9d39361df3660373 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Mon, 28 Jun 2021 11:15:52 -0700 Subject: [PATCH] Docs: fixup `maintainers` derivation meta field example --- doc/manual/src/jobs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/src/jobs.md b/doc/manual/src/jobs.md index 2863838e..c1c97627 100644 --- a/doc/manual/src/jobs.md +++ b/doc/manual/src/jobs.md @@ -14,7 +14,7 @@ Hydra stores the following job attributes in its database: * `description` - `meta.description`, a string * `license` - a comma separated list of license names from `meta.license`, expected to be a list of attribute sets with an attribute named `shortName`, ex: `[ { shortName = "licensename"} ]`. * `homepage` - `meta.homepage`, a string -* `maintainers` - a comma separated list of maintainer email addresses from `meta.maintainers`, expected to be a list of attribute sets with an attribute named `email`, ex: `[ { email = "alice@example.com"} ]`. +* `maintainers` - a comma separated list of maintainer email addresses from `meta.maintainers`, expected to be a list of attribute sets with an attribute named `email`, ex: `[ { email = "alice@example.com"; } ]`. * `schedulingPriority` - `meta.schedulingPriority`, an integer. Default: 100. Slightly prioritizes this job over other jobs within this jobset. * `timeout` - `meta.timeout`, an integer. Default: 36000. Number of seconds this job must complete within. * `maxSilent` - `meta.maxSilent`, an integer. Default: 7200. Number of seconds of no output on stderr / stdout before considering the job failed.