We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5cb5d27 + 91e5481 commit 89f49b0Copy full SHA for 89f49b0
src/doc/trpl/unsized-types.md
@@ -38,9 +38,11 @@ impl Foo for &str {
38
```
39
40
Meaning, this implementation would only work for [references][ref], and not
41
-other types of pointers. With this `impl`, all pointers, including (at some
42
-point, there are some bugs to fix first) user-defined custom smart pointers,
43
-can use this `impl`.
+other types of pointers. With the `impl for str`, all pointers, including (at
+some point, there are some bugs to fix first) user-defined custom smart
+pointers, can use this `impl`.
44
+
45
+[ref]: references-and-borrowing.html
46
47
# ?Sized
48
0 commit comments