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") }