From 12db5f38bcec6acd930b6581fb5330ecb120a48d Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Mon, 6 Feb 2023 13:15:48 +0000
Subject: [PATCH] Issue #3155400 by jungle, alexpott: Change
 $requirements["$file file writeable"] to $requirements["$file file writable"]

---
 core/includes/install.core.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index 3f3726fc3f5d..cc180883de49 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -2195,7 +2195,7 @@ function install_check_requirements($install_state) {
       }
       // If the $file is not writable, throw an error.
       if (!$writable) {
-        $requirements["$file file writeable"] = [
+        $requirements["$file file writable"] = [
           'title' => $default_file_info['title'],
           'value' => t('The %file is not writable.', ['%file' => $default_file_info['title']]),
           'severity' => REQUIREMENT_ERROR,
-- 
GitLab