From 0a648e4e7d2eb94244aac67e94db3a370233cf45 Mon Sep 17 00:00:00 2001 From: lexi Date: Tue, 27 Aug 2024 20:47:38 +0200 Subject: [PATCH] Fix typo in 3324-dyn-upcasting.md --- text/3324-dyn-upcasting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/3324-dyn-upcasting.md b/text/3324-dyn-upcasting.md index e9c514f5286..0683db7cbca 100644 --- a/text/3324-dyn-upcasting.md +++ b/text/3324-dyn-upcasting.md @@ -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