From d83d1f1c48bf91e0ffbc3d67d81d2c955b945b27 Mon Sep 17 00:00:00 2001 From: Tanuj Date: Fri, 5 May 2023 08:57:44 +0100 Subject: [PATCH] Fix pluralisation inconsistency (#612) --- src/structs/tuple-structs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structs/tuple-structs.md b/src/structs/tuple-structs.md index 1ffc1a41..9524a2a9 100644 --- a/src/structs/tuple-structs.md +++ b/src/structs/tuple-structs.md @@ -14,10 +14,10 @@ fn main() { This is often used for single-field wrappers (called newtypes): ```rust,editable,compile_fail -struct PoundOfForce(f64); +struct PoundsOfForce(f64); struct Newtons(f64); -fn compute_thruster_force() -> PoundOfForce { +fn compute_thruster_force() -> PoundsOfForce { todo!("Ask a rocket scientist at NASA") }