summaryrefslogtreecommitdiff
path: root/Userland/DevTools
diff options
context:
space:
mode:
authorKarol Kosek <krkk@serenityos.org>2022-12-21 10:59:46 +0100
committerSam Atkins <atkinssj@gmail.com>2022-12-21 19:05:13 +0000
commitba60b0102639183009773b229cea5b65a24df8a3 (patch)
treeed5a08ac9e17a3e2042e37555b0eb5044b6d50d1 /Userland/DevTools
parent2e710de2f4d3a7d4597a9e6faff1190644848119 (diff)
downloadserenity-ba60b0102639183009773b229cea5b65a24df8a3.zip
HackStudio: Fix typo in one error message
A regression from 4784ad66b29dc30fa27e0bd528b5cf85f5287b4b. oops.
Diffstat (limited to 'Userland/DevTools')
-rw-r--r--Userland/DevTools/HackStudio/HackStudioWidget.cpp2
1 files changed, 1 insertions, 1 deletions
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<GUI::Action> 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);
}