Skip to content

Commit 83b81fd

Browse files
WaffleLapkinJoshua Nelson
authored and
Joshua Nelson
committed
fix typo
1 parent 871a545 commit 83b81fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ that one type is equal to another type and want to swap one out for the other an
77
for another type and so on until we eventually get some concrete types (or an error).
88

99
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
10+
Conceptually, you can think of `SubstsRef` as a list of types that are to be substituted for the
1111
generic type parameters of the ADT.
1212

1313
`SubstsRef` is a type alias of `List<GenericArg<'tcx>>` (see [`List` rustdocs][list]).

0 commit comments

Comments
 (0)