Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revise Download instructions for Unix & Fix Grammar in CONTRIBUTING.md #6769

Merged
merged 3 commits into from
Jun 6, 2024
Merged
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ for getting things done and landing your contribution.
> We use [GitHub Merge Queues](https://github.blog/2023-07-12-github-merge-queue-is-generally-available/)
> which means that before merge the PRs get automatically updated and checked against the latest changes on the base branch.
>
> This also reduces the amount of times we need to run our CI checks, as every new push requires freshly new CI-checks.
> This also reduces the amount of times we need to run our CI checks, as every new push requires fresh new CI-checks.

### CLI Commands

Expand Down
2 changes: 1 addition & 1 deletion util/getNodeDownloadSnippet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const getNodeDownloadSnippet = (release: NodeRelease, os: UserOS) => {
# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

# download and install Node.js
# download and install Node.js (you may need to restart the terminal)
nvm install ${release.major}

# verifies the right Node.js version is in the environment
Expand Down
Loading