Skip to content

Commit eaab007

Browse files
committed
doc(tupled): use sort instead of kind
Since when I read kind in the docs, then I think first about kind in the context of type theory
1 parent 0d69647 commit eaab007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/reference/other-new-features/tupled-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The compiler will synthesize an instance of `TupledFunction[F, G]` if:
2828
* `F` is a function type of arity `N`
2929
* `G` is a function with a single tuple argument of size `N` and its types are equal to the arguments of `F`
3030
* The return type of `F` is equal to the return type of `G`
31-
* `F` and `G` are the same kind of function (both are `(...) => R` or both are `(...) ?=> R`)
31+
* `F` and `G` are the same sort of function (both are `(...) => R` or both are `(...) ?=> R`)
3232
* If only one of `F` or `G` is instantiated the second one is inferred.
3333

3434
Examples

0 commit comments

Comments
 (0)