1
0
mirror of synced 2025-12-21 10:57:10 -05:00

JSON code sample fix

The left and right double quote characters (Unicode chars U+201C and U+201D) are used around the features element in the JSON sample.  These are not valid JSON.
The PR changes these to U+0022 - straight double quote
This commit is contained in:
nickQuant
2022-09-04 08:49:36 +10:00
committed by GitHub
parent 9b0b1d20ab
commit 896c40105e

View File

@@ -75,7 +75,7 @@ Some software, such as TensorFlow, requires you to install NVIDIA CUDA to use yo
1. Add a top-level `features` object with the following contents: 1. Add a top-level `features` object with the following contents:
```json{:copy} ```json{:copy}
features: { "features": {
"ghcr.io/devcontainers/features/nvidia-cuda:1": { "ghcr.io/devcontainers/features/nvidia-cuda:1": {
"installCudnn": true "installCudnn": true
} }
@@ -96,7 +96,7 @@ Some software, such as TensorFlow, requires you to install NVIDIA CUDA to use yo
] ]
} }
}, },
features: { "features": {
"ghcr.io/devcontainers/features/nvidia-cuda:1": { "ghcr.io/devcontainers/features/nvidia-cuda:1": {
"installCudnn": true "installCudnn": true
} }