We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 871a545 commit 83b81fdCopy full SHA for 83b81fd
src/generics.md
@@ -7,7 +7,7 @@ that one type is equal to another type and want to swap one out for the other an
7
for another type and so on until we eventually get some concrete types (or an error).
8
9
In rustc this is done using the `SubstsRef` that we mentioned above (“substs” = “substitutions”).
10
-Conceptually, you can think of `SubstsRef` of a list of types that are to be substituted for the
+Conceptually, you can think of `SubstsRef` as a list of types that are to be substituted for the
11
generic type parameters of the ADT.
12
13
`SubstsRef` is a type alias of `List<GenericArg<'tcx>>` (see [`List` rustdocs][list]).
0 commit comments