From 497c4e0546517414d486fc1a9d75b87a13ce03bf Mon Sep 17 00:00:00 2001 From: aaron Date: Tue, 27 Aug 2024 19:14:51 -0700 Subject: [PATCH] Update docs/user-defined-type-functions.md Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> --- docs/user-defined-type-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-defined-type-functions.md b/docs/user-defined-type-functions.md index 401c153..6dd8286 100644 --- a/docs/user-defined-type-functions.md +++ b/docs/user-defined-type-functions.md @@ -157,7 +157,7 @@ This section details the initial programming interface we propose for `type`s wh | Instance Methods | Return Type | Description | | ------------- | ------------- | ------------- | -| `setparameters(pack: {type}?, variadic: type?)` | `nil` | sets the function's parameter types to the arguments | +| `setparameters(pack: {type}?, variadic: type?)` | () | sets the function's parameter types to the arguments | | `parameters()` | `{pack: {type}?, variadic: type?}` | returns the function's parameter types as a table | | `setreturns(pack: {type}?, variadic: type?)` | () | sets the function's return types to the arguments | | `returns()` | `{pack: {type}?, variadic: type?}` | returns the function's return types as a table |