From e29d515a2782cdb793cfe53f650741c2476a6412 Mon Sep 17 00:00:00 2001 From: Kiiyoko <73446312+Kiiyoko@users.noreply.github.com> Date: Thu, 12 Dec 2024 23:25:48 -0500 Subject: [PATCH] Update generic-constraints.md fixed a code error --- docs/generic-constraints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/generic-constraints.md b/docs/generic-constraints.md index 0fb0262..14c0cc9 100644 --- a/docs/generic-constraints.md +++ b/docs/generic-constraints.md @@ -44,7 +44,7 @@ local function callbackProperty>( object: T, key: K, callback: ( callback( object[key] ) end -callbackProperty( object, "foo", function( foo ) +callbackProperty( qux, "foo", function( foo ) -- foo: number -- this is expected! end) ```