1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-12 12:18:06 +02:00

Fix casing of “Rust” (#2433)

This commit is contained in:
Martin Geisler 2024-10-15 16:13:53 +02:00 committed by GitHub
parent cf7359fac8
commit c01142e5d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ auto-completion and jump-to-definition functionality for [VS Code], [Emacs],
<details>
- On Debian/Ubuntu, you can also install Cargo, the Rust source and the
[Rust formatter] via `apt`. However, this gets you an outdated rust version
[Rust formatter] via `apt`. However, this gets you an outdated Rust version
and may lead to unexpected behavior. The command would be:
```shell

View File

@ -10,7 +10,7 @@ Omitting the module content will tell Rust to look for it in another file:
mod garden;
```
This tells rust that the `garden` module content is found at `src/garden.rs`.
This tells Rust that the `garden` module content is found at `src/garden.rs`.
Similarly, a `garden::vegetables` module can be found at
`src/garden/vegetables.rs`.