From 0b44bfb66107827e0f0434409f29242272f756e4 Mon Sep 17 00:00:00 2001 From: miraklesource <123849552+miraklesource@users.noreply.github.com> Date: Sat, 2 May 2026 20:21:05 -0400 Subject: [PATCH] Fix grammar in the description of function parameters This should be "named unit_label and is of type char" instead of "named unit_label and is type char". --- src/ch03-03-how-functions-work.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch03-03-how-functions-work.md b/src/ch03-03-how-functions-work.md index 5f9e512da2..2d9233c462 100644 --- a/src/ch03-03-how-functions-work.md +++ b/src/ch03-03-how-functions-work.md @@ -84,7 +84,7 @@ commas, like this: This example creates a function named `print_labeled_measurement` with two parameters. The first parameter is named `value` and is an `i32`. The second is -named `unit_label` and is type `char`. The function then prints text containing +named `unit_label` and is of type `char`. The function then prints text containing both the `value` and the `unit_label`. Let’s try running this code. Replace the program currently in your _functions_