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 525f3cd1a6a9..fc72a6cdc05f 100644 --- a/packages/documentation/copy/en/handbook-v2/More on Functions.md +++ b/packages/documentation/copy/en/handbook-v2/More on Functions.md @@ -870,7 +870,7 @@ const dst = [0]; src.forEach((el) => dst.push(el)); ``` -There is one other special case to be aware of, when a literal function definition has a `void` return type, that function must **not** return anything. +There is one other special case to be aware of. When a literal function definition has a `void` return type, that function must **not** return anything. ```ts twoslash function f2(): void {