From f71323024cdbf43646dff14c39f54330a8f6b2f8 Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Fri, 12 Apr 2024 13:35:35 -0700 Subject: [PATCH] Fix pkl.reflect#typedType to mirror the right type (#426) --- stdlib/reflect.pkl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/reflect.pkl b/stdlib/reflect.pkl index 048aa828..96c6f516 100644 --- a/stdlib/reflect.pkl +++ b/stdlib/reflect.pkl @@ -92,7 +92,7 @@ const objectType: DeclaredType = DeclaredType(Class(Object)) const dynamicType: DeclaredType = DeclaredType(Class(Dynamic)) /// A mirror for the [Typed] type. -const typedType: DeclaredType = DeclaredType(Class(Type)) +const typedType: DeclaredType = DeclaredType(Class(Typed)) /// A mirror for the `Listing` type. const listingType: DeclaredType = DeclaredType(Class(Listing))