Fix typo in 3324-dyn-upcasting.md

This commit is contained in:
lexi 2024-08-27 20:47:38 +02:00 committed by Michael Goulet
parent 46781d0b1d
commit 0a648e4e7d
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ Enable upcasts from `dyn Trait1` to `dyn Trait2` if `Trait1` is a subtrait of `T
This RFC does not enable `dyn (Trait1 + Trait2)` for arbitrary traits. If `Trait1` has multiple supertraits, you can upcast to any one of them, but not to all of them.
This RFC has already been implemented in the nightly compiled with the feature gate `trait_upcasting`.
This RFC has already been implemented in the nightly compiler with the feature gate `trait_upcasting`.
# Motivation
[motivation]: #motivation