1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-24 09:46:45 +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
2 changed files with 2 additions and 2 deletions

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`.