Skip to content

Commit a94ec8f

Browse files
authored
docs: fix rustup cmd for adding rust-analyzer (#18605)
Important to specify the patch version so rust-analyzer component is picked up correctly by tools like helix
1 parent fb765c2 commit a94ec8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/contributor-guide/development_environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ DataFusion is written in Rust and it uses a standard rust toolkit:
7777

7878
- `rustup update stable` DataFusion generally uses the latest stable release of Rust, though it may lag when new Rust toolchains release
7979
- See which toolchain is currently pinned in the [`rust-toolchain.toml`](https://github.com/apache/datafusion/blob/main/rust-toolchain.toml) file
80-
- This can cause issues such as not having the rust-analyzer component installed for the specified toolchain, in which case just install it manually, e.g. `rustup component add --toolchain 1.88 rust-analyzer`
80+
- This can cause issues such as not having the rust-analyzer component installed for the specified toolchain, in which case just install it manually, e.g. `rustup component add --toolchain 1.88.0 rust-analyzer`
8181
- `cargo build`
8282
- `cargo fmt` to format the code
8383
- etc.

0 commit comments

Comments
 (0)