From e812369e2f260c2cdaca9570327a37ef9a1c2898 Mon Sep 17 00:00:00 2001 From: yoKurt94 <62561593+yoKurt94@users.noreply.github.com> Date: Thu, 15 May 2025 17:10:38 +0200 Subject: [PATCH] Improving clarity by removing repitition Rephrased a sentence in the unknown section by removing the repeated use of the word 'function'. --- packages/documentation/copy/en/handbook-v2/More on Functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: