diff --git a/website/source/docs/drivers/exec.html.md b/website/source/docs/drivers/exec.html.md
index ce1413461..cdfba5d68 100644
--- a/website/source/docs/drivers/exec.html.md
+++ b/website/source/docs/drivers/exec.html.md
@@ -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
diff --git a/website/source/docs/drivers/java.html.md b/website/source/docs/drivers/java.html.md
index 57d67a0bf..f79e6c77c 100644
--- a/website/source/docs/drivers/java.html.md
+++ b/website/source/docs/drivers/java.html.md
@@ -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
diff --git a/website/source/docs/drivers/raw_exec.html.md b/website/source/docs/drivers/raw_exec.html.md
index fc0fb48dc..3f3dd75fa 100644
--- a/website/source/docs/drivers/raw_exec.html.md
+++ b/website/source/docs/drivers/raw_exec.html.md
@@ -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