From 896c40105ee3ea0f969fb18557ff8458b5a55f9c Mon Sep 17 00:00:00 2001 From: nickQuant <42654084+nickQuant@users.noreply.github.com> Date: Sun, 4 Sep 2022 08:49:36 +1000 Subject: [PATCH] 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 --- ...ing-started-with-github-codespaces-for-machine-learning.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning.md b/content/codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning.md index b4000e433e..00adb83600 100644 --- a/content/codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning.md +++ b/content/codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning.md @@ -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: ```json{:copy} - “features”: { + "features": { "ghcr.io/devcontainers/features/nvidia-cuda:1": { "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": { "installCudnn": true }