From cca67178c48b0b999efe55dffcccf913762d4c50 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Sun, 16 Aug 2026 16:18:23 +0800 Subject: [PATCH] fix: correct 'do stuck' to 'do stuff' in ownership example Line 63 in src/ch04-ownership/what-is-it.md: // do stuck with x -> // do stuff with x Fixes issue #21 --- src/ch04-ownership/what-is-it.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ch04-ownership/what-is-it.md b/src/ch04-ownership/what-is-it.md index eb86a40..7e7166a 100644 --- a/src/ch04-ownership/what-is-it.md +++ b/src/ch04-ownership/what-is-it.md @@ -60,7 +60,7 @@ of the statement body. In fact, you can introduce an unnamed scope using a brace { const auto x = 5; - // do stuck with x + // do stuff with x } // x out of scope ``` @@ -134,4 +134,3 @@ $ return 0; $} // --snip-- ``` -