summaryrefslogtreecommitdiff
path: root/Shell/Shell.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-06-17 18:20:28 +0200
committerAndreas Kling <kling@serenityos.org>2020-06-17 18:35:49 +0200
commit723f4e5ee65cb31b29428d2ea4d701fd906204c0 (patch)
treeabf21a26f22f6d9d317ebb4b47e07217c0e4f83f /Shell/Shell.cpp
parentd7bf60937655fbe316a9aff8c1119339ffb23e79 (diff)
downloadserenity-723f4e5ee65cb31b29428d2ea4d701fd906204c0.zip
Meta: Scale back overly informal user-facing strings
We were getting a little overly memey in some places, so let's scale things back to business-casual. Informal language is fine in comments, commits and debug logs, but let's keep the runtime nice and presentable. :^)
Diffstat (limited to 'Shell/Shell.cpp')
-rw-r--r--Shell/Shell.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Shell/Shell.cpp b/Shell/Shell.cpp
index ebd92596c7..ef210441e0 100644
--- a/Shell/Shell.cpp
+++ b/Shell/Shell.cpp
@@ -339,7 +339,7 @@ int Shell::builtin_exit(int, const char**)
{
if (!jobs.is_empty()) {
if (!m_should_ignore_jobs_on_next_exit) {
- printf("Shell: Hey dude, you have %zu active job%s, run 'exit' again to really exit.\n", jobs.size(), jobs.size() > 1 ? "s" : "");
+ printf("Shell: You have %zu active job%s, run 'exit' again to really exit.\n", jobs.size(), jobs.size() > 1 ? "s" : "");
m_should_ignore_jobs_on_next_exit = true;
return 1;
}