diff --git a/packages/documentation/copy/en/handbook-v2/More on Functions.md b/packages/documentation/copy/en/handbook-v2/More on Functions.md index 4d40edb5bada..77a5ea64ae3e 100644 --- a/packages/documentation/copy/en/handbook-v2/More on Functions.md +++ b/packages/documentation/copy/en/handbook-v2/More on Functions.md @@ -662,7 +662,7 @@ function f2(a: unknown) { } ``` -This is useful when describing function types because you can describe functions that accept any value without having `any` values in your function body. +This is useful when describing function types because you can allow them to accept any value without having `any` values in your function body. Conversely, you can describe a function that returns a value of unknown type: