From abfcefd56c33cd701404827b5796dee4e43f156d Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Fri, 20 May 2022 11:32:30 -0700 Subject: [PATCH 1/2] Spelling fix --- Challenges/Challenge1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Challenges/Challenge1.md b/Challenges/Challenge1.md index 87bb856..2f9a3da 100644 --- a/Challenges/Challenge1.md +++ b/Challenges/Challenge1.md @@ -1,6 +1,6 @@ # Using predefined container configurations ## Background -In order to learn about configuring development containers, it is helpful to start with the simplist definition. The simplist .devcontainer/devcontainer.json file has only an image entry. +In order to learn about configuring development containers, it is helpful to start with the simplest definition. The simplest .devcontainer/devcontainer.json file has only an image entry. ```json { "image": "python:3.9" From ab4c32b704322b6093a2a49ad60e783a134a591b Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Fri, 20 May 2022 11:33:00 -0700 Subject: [PATCH 2/2] Fix broken link --- Challenges/Challenge5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Challenges/Challenge5.md b/Challenges/Challenge5.md index 4942f3f..442f71f 100644 --- a/Challenges/Challenge5.md +++ b/Challenges/Challenge5.md @@ -8,7 +8,7 @@ One of the options is to configure the extensions that are installed in the code Beyond the devcontainer.json, it is possible to install extensions that are installed locally in Visual Studio Code in the remote container. This can be done via the Extensions tab. ### Rest Client - a helpful extension -There is an extension that is very helpful when developing REST APIs. It is the [Rest Client](https://marketplace.visualstudio.com/items?itemName=humao). Among other things, it allows you to send HTTP requests from a file (*.http) and see the results in a separate panel. See the example below: +There is an extension that is very helpful when developing REST APIs. It is the [Rest Client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client). Among other things, it allows you to send HTTP requests from a file (*.http) and see the results in a separate panel. See the example below: ![Rest Client Extension](../Images/RestClientExtension.png) ## Challenge