From f1f1ab2c8eec0cbbb5bd5cbd89197df3ae9f111b Mon Sep 17 00:00:00 2001 From: "Stanislav (Stanley) Modrak" <44023416+smith558@users.noreply.github.com> Date: Fri, 15 May 2026 17:27:09 +0100 Subject: [PATCH] Replace akward sentence --- 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..06cb9effdcc9 100644 --- a/packages/documentation/copy/en/handbook-v2/More on Functions.md +++ b/packages/documentation/copy/en/handbook-v2/More on Functions.md @@ -450,7 +450,7 @@ Functions with fewer parameters (of the same types) can always take the place of ## Function Overloads -Some JavaScript functions can be called in a variety of argument counts and types. +Some JavaScript functions can be called with different types and numbers of arguments. For example, you might write a function to produce a `Date` that takes either a timestamp (one argument) or a month/day/year specification (three arguments). In TypeScript, we can specify a function that can be called in different ways by writing _overload signatures_.