From dd7c671e7ede6f2a484b168841a505b0238d44c7 Mon Sep 17 00:00:00 2001 From: Mohab Date: Thu, 21 Dec 2023 19:55:25 +0200 Subject: [PATCH] Update README.md --- codemods/msw/2/type-args/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codemods/msw/2/type-args/README.md b/codemods/msw/2/type-args/README.md index 947fce71..99e9b3f8 100644 --- a/codemods/msw/2/type-args/README.md +++ b/codemods/msw/2/type-args/README.md @@ -6,7 +6,7 @@ There is a change to generic type interface of `rest.method()` calls. This codem ### WARNING -This codemod runs `.fixUnusedIdentifiers()` on a target source file. This would remove any unused declarations in the file. This is due to the atomicity of this mod, which blindly inserts the callback structure into each msw handler callback and then cleans up the variables that are not used anymore. +This codemod runs `.fixUnusedIdentifiers()` on a target source file. This would remove any unused declarations in the file. This is due to the atomicity of this codemod, which blindly inserts the callback structure into each msw handler callback and then cleans up the variables that are not used anymore. ## Example