Skip to content
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ The precedence for the overrides is:

#### Special overrides

There are a few sources which are used in multiple installations. For those sources, there is an override that globaly overrides all installations from this sources. Here is the list of those sources and their keys.
There are a few sources which are used in multiple installations. For those sources, there is an override that globally overrides all installations from this sources. Here is the list of those sources and their keys.

```
DEV_FEATURE_OVERRIDE_GITHUB_DOWNLOAD_URL=...
Expand Down
2 changes: 1 addition & 1 deletion build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ func testFeature(featureName string) error {
if checkError != nil {
return fmt.Errorf("check failed: %w", checkError)
}
fmt.Println("Check was successfull")
fmt.Println("Check was successful")
}
}

Expand Down
2 changes: 1 addition & 1 deletion features/src/cypress-deps/NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Also don't forget to add `.cypress_cache` to your `.gitignore` file.

### x11 Socket

The Cypress UI in the dev-container is displayed via x11. If the corresponding socket is not correcly forwarded into the container, this can lead to heavy performance loss due to higher CPU usage.
The Cypress UI in the dev-container is displayed via x11. If the corresponding socket is not correctly forwarded into the container, this can lead to heavy performance loss due to higher CPU usage.

To correctly forward the x11 socket into the container, make sure to add the following variables to the `runArgs`:
```
Expand Down
2 changes: 1 addition & 1 deletion features/src/cypress-deps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Also don't forget to add `.cypress_cache` to your `.gitignore` file.

### x11 Socket

The Cypress UI in the dev-container is displayed via x11. If the corresponding socket is not correcly forwarded into the container, this can lead to heavy performance loss due to higher CPU usage.
The Cypress UI in the dev-container is displayed via x11. If the corresponding socket is not correctly forwarded into the container, this can lead to heavy performance loss due to higher CPU usage.

To correctly forward the x11 socket into the container, make sure to add the following variables to the `runArgs`:
```
Expand Down
4 changes: 2 additions & 2 deletions features/src/node/NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Needs access to the following URL for downloading and resolving:

:warning: Internet access is necessary for corepack to install your preferred package manager.

If you prefere to use internal sources, additional configuration is required. Add this to your `devcontainer.json`.
If you prefer to use internal sources, additional configuration is required. Add this to your `devcontainer.json`.

```json
{
Expand All @@ -39,4 +39,4 @@ For **pnpm** to work with Artifactory, you have to additionally add this to the
}
```

The reason for this are missing singatures in the Artifactory NPM API. See [nodejs/corepack#725](https://github.com/nodejs/corepack/issues/725)
The reason for this are missing signatures in the Artifactory NPM API. See [nodejs/corepack#725](https://github.com/nodejs/corepack/issues/725)
4 changes: 2 additions & 2 deletions features/src/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Needs access to the following URL for downloading and resolving:

:warning: Internet access is necessary for corepack to install your preferred package manager.

If you prefere to use internal sources, additional configuration is required. Add this to your `devcontainer.json`.
If you prefer to use internal sources, additional configuration is required. Add this to your `devcontainer.json`.

```json
{
Expand All @@ -73,4 +73,4 @@ For **pnpm** to work with Artifactory, you have to additionally add this to the
}
```

The reason for this are missing singatures in the Artifactory NPM API. See [nodejs/corepack#725](https://github.com/nodejs/corepack/issues/725)
The reason for this are missing signatures in the Artifactory NPM API. See [nodejs/corepack#725](https://github.com/nodejs/corepack/issues/725)
2 changes: 1 addition & 1 deletion installer/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func (f *Feature) Process() error {
return nil
}

// This is the inferface that needs to be implemented by a component.
// This is the interface that needs to be implemented by a component.
type IComponent interface {
// Returns the name of the component.
GetName() string
Expand Down