From e13a6a052be0e50236cf05232fc33e79f84d8c19 Mon Sep 17 00:00:00 2001 From: Juan Gonzalez Date: Sun, 6 Apr 2025 14:29:41 -0400 Subject: [PATCH] fix a few typos --- docs/framework/react/guides/migrating-to-v5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/framework/react/guides/migrating-to-v5.md b/docs/framework/react/guides/migrating-to-v5.md index edc1b604b7..c87dc7bb79 100644 --- a/docs/framework/react/guides/migrating-to-v5.md +++ b/docs/framework/react/guides/migrating-to-v5.md @@ -9,7 +9,7 @@ v5 is a major version, so there are some breaking changes to be aware of: ### Supports a single signature, one object -useQuery and friends used to have many overloads in TypeScript - different ways how the function can be invoked. Not only this was tough to maintain, type wise, it also required a runtime check to see which type the first and the second parameter, to correctly create options. +useQuery and friends used to have many overloads in TypeScript: different ways how the function could be invoked. Not only was this tough to maintain, type wise, it also required a runtime check to see which types the first and the second parameter were, to correctly create options. now we only support the object format.