diff options
author | Karol Kosek <krkk@serenityos.org> | 2022-12-21 10:59:46 +0100 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2022-12-21 19:05:13 +0000 |
commit | ba60b0102639183009773b229cea5b65a24df8a3 (patch) | |
tree | ed5a08ac9e17a3e2042e37555b0eb5044b6d50d1 | |
parent | 2e710de2f4d3a7d4597a9e6faff1190644848119 (diff) | |
download | serenity-ba60b0102639183009773b229cea5b65a24df8a3.zip |
HackStudio: Fix typo in one error message
A regression from 4784ad66b29dc30fa27e0bd528b5cf85f5287b4b. oops.
-rw-r--r-- | Userland/DevTools/HackStudio/HackStudioWidget.cpp | 2 |
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); } |