diff --git a/types/ffi.luau b/types/ffi.luau index 91dcdb1..daca4c4 100644 --- a/types/ffi.luau +++ b/types/ffi.luau @@ -289,7 +289,7 @@ export type CTypeInfo = { @tag Method @Method ptr - create a pointer subtype. + Create a pointer subtype. @return pointer subtype ]=] @@ -300,10 +300,10 @@ export type CTypeInfo = { @tag Method @Method arr - create an array subtype. + Create an array subtype. @param len The length of the array - @return array subtype + @return An array subtype ]=] arr: (self: CTypeInfo, len: number) -> CArrInfo, R>, @@ -435,10 +435,9 @@ export type CPtrInfo = { @Method arr create an array subtype. - FIXME: recursive types; result 'any' should be CArrInfo> @param len The length of the array - @return array subtype + @return An array subtype ]=] arr: (self: CPtrInfo, len: number) -> any, @@ -748,21 +747,21 @@ export type CStructInfo = { @method copyData returns the byte offset of the field. - + @param field index - @return byte offset + @return the byte offset ]=] offset: (self: CStructInfo, index: number) -> number, --[=[ @within CSturctInfo @tag Method - @method copyData + @method field - returns the field type + Get the field type. - @param field index - @return field type + @param index The field index + @return The field type ]=] field: (self: CStructInfo, index: number) -> CTypes, }