From 222ee426ef459f419b2b83b6abfc138ba45a2761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andris=20Borb=C3=A1s?= Date: Mon, 1 Dec 2025 17:27:30 +0100 Subject: [PATCH] Fix typo in swr docs code comment --- docs/swr-openapi/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/swr-openapi/index.md b/docs/swr-openapi/index.md index c83236f4d..0e2bfc968 100644 --- a/docs/swr-openapi/index.md +++ b/docs/swr-openapi/index.md @@ -100,7 +100,7 @@ export const useInfinite = createInfiniteHook(client, prefix); export const useMutate = createMutateHook( client, prefix, - isMatch, // Or any comparision function + isMatch, // Or any comparison function ); ``` :::