Skip to content

Commit 207dff9

Browse files
committed
Contributing Docs: Adjust install Rust + Fix link
* Adjust the section to install rust by providing the link to the page `Install Rust` instead of giving a direct link to install rust on Unix based operation systems only. * Fix link to install the development CLI tool.
1 parent 5c8175c commit 207dff9

1 file changed

Lines changed: 3 additions & 12 deletions

File tree

docs/contributing/getting-started.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,10 @@ This guide covers the one-time setup required to install all the tools and depen
33
## Prerequisites
44

55
### Installing Rust
6-
The recommended way to install Rust is by using **rustup**, the official Rust version manager. Run the following command in your terminal:
76

8-
```sh
9-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
10-
```
11-
12-
This command downloads and runs the `rustup` installer. After installation, you can verify the installed Rust version by running:
13-
14-
```sh
15-
rustc --version
16-
```
7+
To install Rust, follow the official instructions provided on the Rust programming language website. This ensures you are using the recommended method for your specific operating system.
178

18-
which should print the Rust version on terminal.
9+
You can find the installation guide at [Install Rust](https://www.rust-lang.org/tools/install)
1910

2011
### Installing NodeJS
2112

@@ -67,7 +58,7 @@ This script will handle installing dependencies required for building and runnin
6758

6859
This project uses a custom tool, `cargo chipmunk`, to manage development tasks. To install it, navigate to the repository root and run:
6960
```sh
70-
cargo install --path cli/development--cli
61+
cargo install --path cli/development-cli
7162
```
7263

7364
After installation, verify it was successful by checking the version:

0 commit comments

Comments
 (0)