Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Two small fixes: spelling & broken link #12

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Challenges/Challenge1.md
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Challenges/Challenge5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down