From ba60b0102639183009773b229cea5b65a24df8a3 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Wed, 21 Dec 2022 10:59:46 +0100 Subject: HackStudio: Fix typo in one error message A regression from 4784ad66b29dc30fa27e0bd528b5cf85f5287b4b. oops. --- Userland/DevTools/HackStudio/HackStudioWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp index ca43e64bef..844bd9c32d 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp +++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp @@ -1738,7 +1738,7 @@ NonnullRefPtr HackStudioWidget::create_open_project_configuration_a return {}; if (Core::File::exists(parent_directory) && !Core::File::is_directory(parent_directory)) { - formatted_error_string_holder = DeprecatedString::formatted("Cannot create directory the '{}' directory because there is already a file with that name", parent_directory); + formatted_error_string_holder = DeprecatedString::formatted("Cannot create the '{}' directory because there is already a file with that name", parent_directory); return Error::from_string_view(formatted_error_string_holder); } -- cgit v1.2.3