mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-12 09:20:36 +00:00
Userland: Fix typos
This commit is contained in:
parent
971d60c329
commit
6c9bc18a79
Notes:
sideshowbarker
2024-07-18 03:16:17 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/6c9bc18a792 Pull-request: https://github.com/SerenityOS/serenity/pull/10286 Reviewed-by: https://github.com/linusg ✅
6 changed files with 17 additions and 17 deletions
|
@ -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;
|
||||
|
|
|
@ -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)) {
|
||||
|
|
|
@ -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) \
|
||||
|
|
|
@ -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 {};
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue