mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
Userland: Fix typos
This commit is contained in:
parent
971d60c329
commit
6c9bc18a79
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;
|
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;
|
m_time = roll_length + new_value;
|
||||||
} else {
|
} else {
|
||||||
m_time = new_value;
|
m_time = new_value;
|
||||||
|
|
|
@ -145,7 +145,7 @@ Vector<GUI::AutocompleteProvider::Entry> CppComprehensionEngine::autocomplete_na
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (symbol.is_local) {
|
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;
|
bool is_unavailable = symbol.is_local && symbol.declaration->start().line > node.start().line;
|
||||||
if (is_unavailable)
|
if (is_unavailable)
|
||||||
return false;
|
return false;
|
||||||
|
@ -500,7 +500,7 @@ RefPtr<Declaration> CppComprehensionEngine::find_declaration_of(const DocumentDa
|
||||||
}
|
}
|
||||||
|
|
||||||
if (match_variable || match_parameter) {
|
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;
|
bool is_unavailable = symbol.is_local && symbol.declaration->start().line > node.start().line;
|
||||||
|
|
||||||
if (!is_unavailable && (symbol.name.name == target_decl->name)) {
|
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
|
// FIXME: Check for denormals
|
||||||
VERIFY(insn.modrm().is_register());
|
VERIFY(insn.modrm().is_register());
|
||||||
auto val_shd = insn.modrm().read32(m_cpu, insn);
|
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());
|
auto val = static_cast<i32>(val_shd.value());
|
||||||
if (fpu_isnan(0)) {
|
if (fpu_isnan(0)) {
|
||||||
fpu_set_unordered();
|
fpu_set_unordered();
|
||||||
|
@ -1288,16 +1288,16 @@ void SoftFPU::FNSETPM(const X86::Instruction&) { TODO_INSN(); }
|
||||||
|
|
||||||
// MMX
|
// MMX
|
||||||
// helpers
|
// helpers
|
||||||
#define LOAD_MM_MM64M() \
|
#define LOAD_MM_MM64M() \
|
||||||
MMX mm; \
|
MMX mm; \
|
||||||
MMX mm64m; \
|
MMX mm64m; \
|
||||||
if (insn.modrm().mod() == 0b11) { /* 0b11 signals a register */ \
|
if (insn.modrm().mod() == 0b11) { /* 0b11 signals a register */ \
|
||||||
mm64m = mmx_get(insn.modrm().rm()); \
|
mm64m = mmx_get(insn.modrm().rm()); \
|
||||||
} else { \
|
} else { \
|
||||||
auto temp = insn.modrm().read64(m_cpu, insn); \
|
auto temp = insn.modrm().read64(m_cpu, insn); \
|
||||||
warn_if_uninitialized(temp, "Read of uninitialized Memmory as Packed integer"); \
|
warn_if_uninitialized(temp, "Read of uninitialized Memory as Packed integer"); \
|
||||||
mm64m.raw = temp.value(); \
|
mm64m.raw = temp.value(); \
|
||||||
} \
|
} \
|
||||||
mm = mmx_get(insn.modrm().reg())
|
mm = mmx_get(insn.modrm().reg())
|
||||||
|
|
||||||
#define MMX_intrinsic(intrinsic, res_type, actor_type) \
|
#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)
|
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_x {};
|
||||||
Length offset_y {};
|
Length offset_y {};
|
||||||
Length blur_radius {};
|
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,
|
// with the persisted attribute initialized to persisted,
|
||||||
auto event = HTML::PageTransitionEvent::create(move(event_name), 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);
|
event->set_cancelable(true);
|
||||||
|
|
||||||
// the bubbles attribute initialized to 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;
|
in_ansi = true;
|
||||||
|
|
||||||
if (!in_ansi)
|
if (!in_ansi)
|
||||||
// FIXME: calcuate the printed width of the character.
|
// FIXME: calculate the printed width of the character.
|
||||||
offset++;
|
offset++;
|
||||||
|
|
||||||
if (isalpha(codepoint))
|
if (isalpha(codepoint))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue