1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

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. :^)
This commit is contained in:
Andreas Kling 2020-06-17 18:20:28 +02:00
parent d7bf609376
commit 723f4e5ee6
8 changed files with 15 additions and 33 deletions

View file

@ -176,7 +176,7 @@ void handle_crash(RegisterState& regs, const char* description, int signal, bool
dump(regs);
if (Process::current->is_ring0()) {
klog() << "Oh shit, we've crashed in ring 0 :(";
klog() << "Crash in ring 0 :(";
dump_backtrace();
hang();
}
@ -819,7 +819,7 @@ void cpu_setup()
if (g_cpu_supports_rdrand) {
klog() << "x86: Using RDRAND for good randomness";
} else {
klog() << "x86: No RDRAND support detected. Randomness will be shitty";
klog() << "x86: No RDRAND support detected, randomness will be poor";
}
}