Userland: Fix typos

This commit is contained in:
Nico Weber 2021-09-30 20:11:27 -04:00 committed by Linus Groh
parent 971d60c329
commit 6c9bc18a79
Notes: sideshowbarker 2024-07-18 03:16:17 +09:00
6 changed files with 17 additions and 17 deletions

View file

@ -21,7 +21,7 @@ void TrackManager::time_forward(int amount)
{
int new_value = (static_cast<int>(m_time) + amount) % roll_length;
if (new_value < 0) { // If the new time value is negaive add roll_length to wrap around
if (new_value < 0) { // If the new time value is negative add roll_length to wrap around
m_time = roll_length + new_value;
} else {
m_time = new_value;

View file

@ -145,7 +145,7 @@ Vector<GUI::AutocompleteProvider::Entry> CppComprehensionEngine::autocomplete_na
return false;
if (symbol.is_local) {
// If this symbol was declared bellow us in a function, it's not available to us.
// If this symbol was declared below us in a function, it's not available to us.
bool is_unavailable = symbol.is_local && symbol.declaration->start().line > node.start().line;
if (is_unavailable)
return false;
@ -500,7 +500,7 @@ RefPtr<Declaration> CppComprehensionEngine::find_declaration_of(const DocumentDa
}
if (match_variable || match_parameter) {
// If this symbol was declared bellow us in a function, it's not available to us.
// If this symbol was declared below us in a function, it's not available to us.
bool is_unavailable = symbol.is_local && symbol.declaration->start().line > node.start().line;
if (!is_unavailable && (symbol.name.name == target_decl->name)) {

View file

@ -863,7 +863,7 @@ void SoftFPU::FICOM_RM32(const X86::Instruction& insn)
// FIXME: Check for denormals
VERIFY(insn.modrm().is_register());
auto val_shd = insn.modrm().read32(m_cpu, insn);
warn_if_uninitialized(val_shd, "int32 comapre to float");
warn_if_uninitialized(val_shd, "int32 compare to float");
auto val = static_cast<i32>(val_shd.value());
if (fpu_isnan(0)) {
fpu_set_unordered();
@ -1288,16 +1288,16 @@ void SoftFPU::FNSETPM(const X86::Instruction&) { TODO_INSN(); }
// MMX
// helpers
#define LOAD_MM_MM64M() \
MMX mm; \
MMX mm64m; \
if (insn.modrm().mod() == 0b11) { /* 0b11 signals a register */ \
mm64m = mmx_get(insn.modrm().rm()); \
} else { \
auto temp = insn.modrm().read64(m_cpu, insn); \
warn_if_uninitialized(temp, "Read of uninitialized Memmory as Packed integer"); \
mm64m.raw = temp.value(); \
} \
#define LOAD_MM_MM64M() \
MMX mm; \
MMX mm64m; \
if (insn.modrm().mod() == 0b11) { /* 0b11 signals a register */ \
mm64m = mmx_get(insn.modrm().rm()); \
} else { \
auto temp = insn.modrm().read64(m_cpu, insn); \
warn_if_uninitialized(temp, "Read of uninitialized Memory as Packed integer"); \
mm64m.raw = temp.value(); \
} \
mm = mmx_get(insn.modrm().reg())
#define MMX_intrinsic(intrinsic, res_type, actor_type) \

View file

@ -2025,7 +2025,7 @@ RefPtr<StyleValue> Parser::parse_border_radius_shorthand_value(ParsingContext co
RefPtr<StyleValue> Parser::parse_box_shadow_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
{
// FIXME: Also support inset, spread-radius and multiple comma-seperated box-shadows
// FIXME: Also support inset, spread-radius and multiple comma-separated box-shadows
Length offset_x {};
Length offset_y {};
Length blur_radius {};

View file

@ -288,7 +288,7 @@ void Window::fire_a_page_transition_event(FlyString event_name, bool persisted)
// with the persisted attribute initialized to persisted,
auto event = HTML::PageTransitionEvent::create(move(event_name), persisted);
// ...the cancelable attribute intialized to true,
// ...the cancelable attribute initialized to true,
event->set_cancelable(true);
// the bubbles attribute initialized to true,

View file

@ -80,7 +80,7 @@ static Vector<String> wrap_line(Utf8View const& string, size_t width)
in_ansi = true;
if (!in_ansi)
// FIXME: calcuate the printed width of the character.
// FIXME: calculate the printed width of the character.
offset++;
if (isalpha(codepoint))