From b97437c6768dbd6ab69ed3f987902a6b82771255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Roman=C3=AD?= Date: Fri, 8 May 2026 19:39:39 +0200 Subject: [PATCH] Fix typo in method documentation for merge function --- src/Config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.php b/src/Config.php index f2f1a174..a5474c6d 100644 --- a/src/Config.php +++ b/src/Config.php @@ -213,7 +213,7 @@ public static function make(array|string $config = []): Config { } /** - * Marge arrays recursively and distinct + * Merge arrays recursively and distinct * * Merges any number of arrays / parameters recursively, replacing * entries with string keys with values from latter arrays. @@ -292,4 +292,4 @@ public function clear(): static { $this->config = []; return $this; } -} \ No newline at end of file +}