Fix missing quote in driver docs

This commit is contained in:
Alex Dadgar 2016-01-14 08:14:57 -08:00
parent 16946aff13
commit 08afeba499
3 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@ The `exec` driver supports the following configuration in the job spec:
before launching the task. For example:
```
args = ["$nomad.ip", "$MY_ENV", $meta.foo"]
args = ["$nomad.ip", "$MY_ENV", "$meta.foo"]
```
## Client Requirements

View file

@ -33,7 +33,7 @@ The `java` driver supports the following configuration in the job spec:
before launching the task. For example:
```
args = ["$nomad.ip", "$MY_ENV", $meta.foo"]
args = ["$nomad.ip", "$MY_ENV", "$meta.foo"]
```
* `jvm_options` - (Optional) A list of JVM options to be passed while invoking

View file

@ -36,7 +36,7 @@ The `raw_exec` driver supports the following configuration in the job spec:
before launching the task. For example:
```
args = ["$nomad.ip", "$MY_ENV", $meta.foo"]
args = ["$nomad.ip", "$MY_ENV", "$meta.foo"]
```
## Client Requirements