1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

LibWeb: Fix typo: covert_number_to_string => convert_number_to_string

This commit is contained in:
Andreas Kling 2024-04-03 18:17:24 +02:00
parent ffac32d20e
commit fb263e232a
Notes: sideshowbarker 2024-07-17 07:14:09 +09:00
2 changed files with 5 additions and 5 deletions

View file

@ -1581,7 +1581,7 @@ Optional<double> HTMLInputElement::convert_string_to_number(StringView input) co
}
// https://html.spec.whatwg.org/multipage/input.html#concept-input-value-string-number
String HTMLInputElement::covert_number_to_string(double input) const
String HTMLInputElement::convert_number_to_string(double input) const
{
// https://html.spec.whatwg.org/multipage/input.html#number-state-(type=number):concept-input-value-number-string
if (type_state() == TypeAttributeState::Number)
@ -1591,7 +1591,7 @@ String HTMLInputElement::covert_number_to_string(double input) const
if (type_state() == TypeAttributeState::Range)
return MUST(String::number(input));
dbgln("HTMLInputElement::covert_number_to_string() not implemented for input type {}", type());
dbgln("HTMLInputElement::convert_number_to_string() not implemented for input type {}", type());
return {};
}
@ -1841,7 +1841,7 @@ WebIDL::ExceptionOr<void> HTMLInputElement::set_value_as_number(double value)
}
// Otherwise, run the algorithm to convert a number to a string, as defined for that state, on the new value, and set the value of the element to the resulting string.
TRY(set_value(covert_number_to_string(value)));
TRY(set_value(convert_number_to_string(value)));
return {};
}
@ -1932,7 +1932,7 @@ WebIDL::ExceptionOr<void> HTMLInputElement::step_up_or_down(bool is_down, WebIDL
// 11. Let value as string be the result of running the algorithm to convert a number to a string,
// as defined for the input element's type attribute's current state, on value.
auto value_as_string = covert_number_to_string(value);
auto value_as_string = convert_number_to_string(value);
// 12. Set the value of the element to value as string.
TRY(set_value(value_as_string));

View file

@ -223,7 +223,7 @@ private:
virtual void visit_edges(Cell::Visitor&) override;
Optional<double> convert_string_to_number(StringView input) const;
String covert_number_to_string(double input) const;
String convert_number_to_string(double input) const;
WebIDL::ExceptionOr<JS::GCPtr<JS::Date>> convert_string_to_date(StringView input) const;
String covert_date_to_string(JS::NonnullGCPtr<JS::Date> input) const;