From c01142e5d25489abe05bcac765b3bb2c1f11bf14 Mon Sep 17 00:00:00 2001
From: Martin Geisler <martin@geisler.net>
Date: Tue, 15 Oct 2024 16:13:53 +0200
Subject: [PATCH] =?UTF-8?q?Fix=20casing=20of=20=E2=80=9CRust=E2=80=9D=20(#?=
 =?UTF-8?q?2433)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/cargo.md              | 2 +-
 src/modules/filesystem.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cargo.md b/src/cargo.md
index 56d252ef..f1769698 100644
--- a/src/cargo.md
+++ b/src/cargo.md
@@ -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
diff --git a/src/modules/filesystem.md b/src/modules/filesystem.md
index 6771cd26..bc8daff1 100644
--- a/src/modules/filesystem.md
+++ b/src/modules/filesystem.md
@@ -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`.