We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7dfa39 + d558f46 commit 4a93cc0Copy full SHA for 4a93cc0
src/generics/bounds.md
@@ -49,7 +49,7 @@ fn print_debug<T: Debug>(t: &T) {
49
println!("{:?}", t);
50
}
51
52
-// `T` must implement `HasArea`. Any function which meets
+// `T` must implement `HasArea`. Any type which meets
53
// the bound can access `HasArea`'s function `area`.
54
fn area<T: HasArea>(t: &T) -> f64 { t.area() }
55
0 commit comments