From 6bce9360c2432fa1a42b9e9f34fa6589e7edcd10 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:35:19 +0200 Subject: [PATCH] Chaining command typo --- docs/api/table-of-contents.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/table-of-contents.mdx b/docs/api/table-of-contents.mdx index 9c0f243671..97bff0ce16 100644 --- a/docs/api/table-of-contents.mdx +++ b/docs/api/table-of-contents.mdx @@ -6,7 +6,7 @@ sidebar_position: 10 ## Commands Cypress commands don't do anything at the moment they are invoked, but rather -enqueue themselves to be run later. Commands can be chained commands together +enqueue themselves to be run later. Commands can be chained together because Cypress manages a Promise chain on your behalf, with each command yielding a 'subject' to the next command, until the chain ends or an error is encountered.