mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
Everywhere: Change spelling of 'behaviour' to 'behavior'
"The official project language is American English […]."
5d2e915623/CONTRIBUTING.md (L30)
Here's a short statistic of the occurrences of the word "behavio(u)r":
$ git grep -IPioh 'behaviou?r' | sort | uniq -c | sort -n
2 BEHAVIOR
24 Behaviour
32 behaviour
407 Behavior
992 behavior
Therefore, it is clear that "behaviour" (56 occurrences) should be
regarded a typo, and "behavior" (1401 occurrences) should be preferred.
Note that The occurrences in LibJS are intentionally NOT changed,
because there are taken verbatim from the specification. Hence:
$ git grep -IPioh 'behaviou?r' | sort | uniq -c | sort -n
2 BEHAVIOR
10 behaviour
24 Behaviour
407 Behavior
1014 behavior
This commit is contained in:
parent
d5f8dac2bd
commit
36ff6187f6
11 changed files with 20 additions and 20 deletions
|
@ -65,12 +65,12 @@ bool Variant::operator==(Variant const& other) const
|
|||
return own_value == other_value;
|
||||
else if constexpr (IsSame<T, GUI::Icon>)
|
||||
return &own_value.impl() == &other_value.impl();
|
||||
// FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it.
|
||||
// FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it.
|
||||
else
|
||||
return to_deprecated_string() == other.to_deprecated_string();
|
||||
},
|
||||
[&](auto const&) {
|
||||
// FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it.
|
||||
// FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it.
|
||||
return to_deprecated_string() == other.to_deprecated_string();
|
||||
});
|
||||
});
|
||||
|
@ -91,12 +91,12 @@ bool Variant::operator<(Variant const& other) const
|
|||
return own_value->name() < other_value->name();
|
||||
else if constexpr (requires { own_value < other_value; })
|
||||
return own_value < other_value;
|
||||
// FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it.
|
||||
// FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it.
|
||||
else
|
||||
return to_deprecated_string() < other.to_deprecated_string();
|
||||
},
|
||||
[&](auto const&) -> bool {
|
||||
return to_deprecated_string() < other.to_deprecated_string(); // FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it.
|
||||
return to_deprecated_string() < other.to_deprecated_string(); // FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it.
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
|
@ -709,7 +709,7 @@ void AntiAliasingPainter::stroke_segment_intersection(FloatPoint current_line_a,
|
|||
return;
|
||||
if ((previous_horizontal || previous_vertical) && (current_horizontal || current_vertical)) {
|
||||
intersection = m_transform.map(current_line_a);
|
||||
// Note: int_thickness used here to match behaviour of draw_line()
|
||||
// Note: int_thickness used here to match behavior of draw_line()
|
||||
int int_thickness = AK::ceil(thickness);
|
||||
return fill_rect(FloatRect(intersection, { thickness, thickness }).translated(-int_thickness / 2), color);
|
||||
}
|
||||
|
|
|
@ -159,7 +159,7 @@ Bytecode::CodeGenerationErrorOr<void> ScopeNode::generate_bytecode(Bytecode::Gen
|
|||
});
|
||||
});
|
||||
|
||||
// 11. NOTE: No abnormal terminations occur after this algorithm step if the global object is an ordinary object. However, if the global object is a Proxy exotic object it may exhibit behaviours that cause abnormal terminations in some of the following steps.
|
||||
// 11. NOTE: No abnormal terminations occur after this algorithm step if the global object is an ordinary object. However, if the global object is a Proxy exotic object it may exhibit behaviors that cause abnormal terminations in some of the following steps.
|
||||
// 12. NOTE: Annex B.3.2.2 adds additional steps at this point.
|
||||
|
||||
// 12. Let strict be IsStrict of script.
|
||||
|
|
|
@ -15,7 +15,7 @@ const REJECTED_CALENDAR_TYPES_THREE_ARGUMENTS = [
|
|||
|
||||
const REJECTED_CALENDAR_TYPES_TWO_ARGUMENTS = [Temporal.PlainMonthDay, Temporal.PlainYearMonth];
|
||||
|
||||
describe("correct behaviour", () => {
|
||||
describe("correct behavior", () => {
|
||||
test("length is 1", () => {
|
||||
expect(Temporal.PlainTime.prototype.with).toHaveLength(1);
|
||||
});
|
||||
|
|
|
@ -309,7 +309,7 @@ void HTMLHyperlinkElementUtils::set_pathname(DeprecatedString pathname)
|
|||
return;
|
||||
|
||||
// 4. Set url's path to the empty list.
|
||||
auto url = m_url; // We copy the URL here to follow other browser's behaviour of reverting the path change if the parse failed.
|
||||
auto url = m_url; // We copy the URL here to follow other browser's behavior of reverting the path change if the parse failed.
|
||||
url->set_paths({});
|
||||
|
||||
// 5. Basic URL parse the given value, with url as url and path start state as state override.
|
||||
|
@ -356,7 +356,7 @@ void HTMLHyperlinkElementUtils::set_search(DeprecatedString search)
|
|||
auto input = search.substring_view(search.starts_with('?'));
|
||||
|
||||
// 2. Set url's query to the empty string.
|
||||
auto url_copy = m_url; // We copy the URL here to follow other browser's behaviour of reverting the search change if the parse failed.
|
||||
auto url_copy = m_url; // We copy the URL here to follow other browser's behavior of reverting the search change if the parse failed.
|
||||
url_copy->set_query(DeprecatedString::empty());
|
||||
|
||||
// 3. Basic URL parse input, with null, this element's node document's document's character encoding, url as url, and query state as state override.
|
||||
|
@ -404,7 +404,7 @@ void HTMLHyperlinkElementUtils::set_hash(DeprecatedString hash)
|
|||
auto input = hash.substring_view(hash.starts_with('#'));
|
||||
|
||||
// 2. Set url's fragment to the empty string.
|
||||
auto url_copy = m_url; // We copy the URL here to follow other browser's behaviour of reverting the hash change if the parse failed.
|
||||
auto url_copy = m_url; // We copy the URL here to follow other browser's behavior of reverting the hash change if the parse failed.
|
||||
url_copy->set_fragment(DeprecatedString::empty());
|
||||
|
||||
// 3. Basic URL parse input, with url as url and fragment state as state override.
|
||||
|
|
|
@ -335,7 +335,7 @@ void URL::set_pathname(String const& pathname)
|
|||
return;
|
||||
|
||||
// 2. Empty this’s URL’s path.
|
||||
auto url = m_url; // We copy the URL here to follow other browser's behaviour of reverting the path change if the parse failed.
|
||||
auto url = m_url; // We copy the URL here to follow other browser's behavior of reverting the path change if the parse failed.
|
||||
url.set_paths({});
|
||||
|
||||
// 3. Basic URL parse the given value with this’s URL as url and path start state as state override.
|
||||
|
@ -384,7 +384,7 @@ WebIDL::ExceptionOr<void> URL::set_search(String const& search)
|
|||
auto input = search_as_string_view.substring_view(search_as_string_view.starts_with('?'));
|
||||
|
||||
// 4. Set url’s query to the empty string.
|
||||
auto url_copy = url; // We copy the URL here to follow other browser's behaviour of reverting the search change if the parse failed.
|
||||
auto url_copy = url; // We copy the URL here to follow other browser's behavior of reverting the search change if the parse failed.
|
||||
url_copy.set_query(DeprecatedString::empty());
|
||||
|
||||
// 5. Basic URL parse input with url as url and query state as state override.
|
||||
|
@ -438,7 +438,7 @@ void URL::set_hash(String const& hash)
|
|||
auto input = hash_as_string_view.substring_view(hash_as_string_view.starts_with('#'));
|
||||
|
||||
// 3. Set this’s URL’s fragment to the empty string.
|
||||
auto url = m_url; // We copy the URL here to follow other browser's behaviour of reverting the hash change if the parse failed.
|
||||
auto url = m_url; // We copy the URL here to follow other browser's behavior of reverting the hash change if the parse failed.
|
||||
url.set_fragment(DeprecatedString::empty());
|
||||
|
||||
// 4. Basic URL parse input with this’s URL as url and fragment state as state override.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue