diff --git a/docs/api/commands/intercept.mdx b/docs/api/commands/intercept.mdx index 1a43d5a79c..929a910a4a 100644 --- a/docs/api/commands/intercept.mdx +++ b/docs/api/commands/intercept.mdx @@ -71,7 +71,7 @@ type CustomResponse = { cy.intercept(url, (req) => { req.body // .body of request will be of type CustomRequest req.continue((res) => { - res.body // .body of request will be of type CustomResponse + res.body // .body of response will be of type CustomResponse }) }) ```