mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:47:34 +00:00
HackStudio: Fix typo in one error message
A regression from 4784ad66b2
. oops.
This commit is contained in:
parent
2e710de2f4
commit
ba60b01026
1 changed files with 1 additions and 1 deletions
|
@ -1738,7 +1738,7 @@ NonnullRefPtr<GUI::Action> HackStudioWidget::create_open_project_configuration_a
|
||||||
return {};
|
return {};
|
||||||
|
|
||||||
if (Core::File::exists(parent_directory) && !Core::File::is_directory(parent_directory)) {
|
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);
|
return Error::from_string_view(formatted_error_string_holder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue