Skip to content

Commit 6bf4941

Browse files
authored
Fix a typo in an [env] block example for EDF (#221)
There was a typo in the example for the `[env]` EDF block, discovered by @fcruzcscs .
1 parent 31a8634 commit 6bf4941

File tree

1 file changed

+3
-3
lines changed
  • docs/software/container-engine

1 file changed

+3
-3
lines changed

docs/software/container-engine/edf.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ Environment variables to set in the container. Empty string values will unset th
168168
* Basic `env` block
169169
```toml
170170
[env]
171-
MY_RUN = "production",
171+
MY_RUN = "production"
172172
DEBUG = "false"
173173
```
174174

175175
* Use of environment variable expansion
176176
```toml
177177
[env]
178-
MY_NODE = "${VAR_FROM_HOST}",
179-
PATH = "${PATH}:/custom/bin",
178+
MY_NODE = "${VAR_FROM_HOST}"
179+
PATH = "${PATH}:/custom/bin"
180180
DEBUG = "true"
181181
```
182182

0 commit comments

Comments
 (0)