From 64f01e1d20c7e93716a0221fb4337c1f44947746 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Gim=C3=A9nez=20de=20Castro?= Date: Thu, 17 Oct 2024 07:27:19 +0200 Subject: [PATCH] fix typo and missing quote --- docs/jobs/jobfile.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/jobs/jobfile.md b/docs/jobs/jobfile.md index 170a24ce2..adc46dcbc 100644 --- a/docs/jobs/jobfile.md +++ b/docs/jobs/jobfile.md @@ -47,7 +47,7 @@ stream = "path/to/stream/dir" # Stdout/Stderr streaming (see --stream) max_fails = 11 [[task]] -stdout = "testout-%{TASK_ID} +stdout = "testout-%{TASK_ID}" stderr = { path = "testerr-%{TASK_ID}", mode = "rm-if-finished" } task_dir = true time_limit = "1m 10s" @@ -142,7 +142,7 @@ command = [...] [[task]] id = 5 command = [...] -deps = [1, 3] # <---- Dependancy on tasks 1 and 3 +deps = [1, 3] # <---- Dependency on tasks 1 and 3 ``` ## Resource variants @@ -177,4 +177,4 @@ to an index of chosen variant (counted from 0) when a task is started. You may specify a resource number as float, e.g. `resources = { "foo" = 1.5 }`. It is valid but internally the type if converted to float, that may for some numbers lead to a rounding up when number is converted to 4-digit precision of resource amounts. -If you want to avoid this, put the number into parentheses, e.g. `resources = { "foo" = "1.5" }`. \ No newline at end of file +If you want to avoid this, put the number into parentheses, e.g. `resources = { "foo" = "1.5" }`.