We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20cf4cf commit 7abb40cCopy full SHA for 7abb40c
src/doc/reference.md
@@ -1418,9 +1418,13 @@ impl<T> Container for Vec<T> {
1418
```
1419
1420
Generic functions may use traits as _bounds_ on their type parameters. This
1421
-will have two effects: only types that have the trait may instantiate the
1422
-parameter, and within the generic function, the methods of the trait can be
1423
-called on values that have the parameter's type. For example:
+will have two effects:
+
+- Only types that have the trait may instantiate the parameter.
1424
+- Within the generic function, the methods of the trait can be
1425
+ called on values that have the parameter's type.
1426
1427
+For example:
1428
1429
1430
# type Surface = i32;
0 commit comments