From 1c8026205e6b8dbfb1b5993f2d94a4e91200247f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Sun, 6 Sep 2026 05:06:51 -0400 Subject: [PATCH] docs: fix typo in prepareRequest comment ('an' -> 'and') --- src/Renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Renderer.php b/src/Renderer.php index 4c6de0b..d9cde90 100644 --- a/src/Renderer.php +++ b/src/Renderer.php @@ -255,7 +255,7 @@ protected function prepareRequest($jobs) { $preparedJobs = $jobs; foreach ($this->plugins as $plugin) { - // Pass both jobs we are working with an original, incoming jobs so + // Pass both jobs we are working with and original, incoming jobs so // that every plugin has a chance to see _all_ original jobs. $preparedJobs = $plugin->prepareRequest($preparedJobs, $jobs); }