summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorBrian Gianforcaro <b.gianfo@gmail.com>2022-09-09 14:53:53 -0700
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-09-14 04:46:49 +0000
commitd0a1775369fc8ff6d9b6197a38b93c7567823f96 (patch)
tree9ee97eab538c2fd94d721a0e36a3656535232dcf /Userland/Applications
parent63c727a4a3414812aa1df50e700bda713f4039a4 (diff)
downloadserenity-d0a1775369fc8ff6d9b6197a38b93c7567823f96.zip
Everywhere: Fix a variety of typos
Spelling fixes found by `codespell`.
Diffstat (limited to 'Userland/Applications')
-rw-r--r--Userland/Applications/Assistant/Providers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Assistant/Providers.cpp b/Userland/Applications/Assistant/Providers.cpp
index 22c83266ab..e5140fa8b5 100644
--- a/Userland/Applications/Assistant/Providers.cpp
+++ b/Userland/Applications/Assistant/Providers.cpp
@@ -51,7 +51,7 @@ void TerminalResult::activate() const
{
// FIXME: This should be a GUI::Process::spawn_or_show_error(), however this is a
// Assistant::Result object, which does not have access to the application's GUI::Window* pointer
- // (which spawn_or_show_error() needs incase it has to open a error message box).
+ // (which spawn_or_show_error() needs in case it has to open a error message box).
(void)Core::Process::spawn("/bin/Terminal"sv, Array { "-k", "-e", title().characters() });
}